list-abstraction/specification

View on GitHub
src/implementation/Node.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class Node {
    /**
     * @param {any} value
     */
    constructor(value) {
        /* @type {any} */
        this.value = value;
    }
}