MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / Tree

Function Tree

chapter04/util/Tree.js:1–4  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

1var Tree = function(value) {
2 this.value = value;
3 this.children = [];
4};
5
6module.exports = Tree;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected