(name)
| 1 | var Folder = function(name) { |
| 2 | this.type = 'folder'; |
| 3 | this.name = name; |
| 4 | this.filesAndFolders = []; |
| 5 | }; |
| 6 | |
| 7 | Folder.prototype.findFolder = function(name) { |
| 8 | if (this.name === name) { |
nothing calls this directly
no outgoing calls
no test coverage detected