diff options
Diffstat (limited to 'lib/output/folder.js')
-rw-r--r-- | lib/output/folder.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/output/folder.js b/lib/output/folder.js index 4b1d9fa..aabdcc4 100644 --- a/lib/output/folder.js +++ b/lib/output/folder.js @@ -74,5 +74,11 @@ FolderOutput.prototype.writeFile = function(filename, buf) { }); }; +// Create a new unique file +// Returns its filename +FolderOutput.prototype.createNewFile = function(base, filename) { + +}; + module.exports = FolderOutput; |