MCPcopy Index your code
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / fileSystem.js

File fileSystem.js

chapter07/7.11 - File System/fileSystem.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1var Folder = function(name) {
2 this.type = 'folder';
3 this.name = name;
4 this.filesAndFolders = [];

Callers

nothing calls this directly

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected