diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-02-13 13:56:04 +0100 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-02-13 13:56:04 +0100 |
commit | d8ed34beba05bde85af420cc4e42a065021653dc (patch) | |
tree | 14a98389f20ef6cf768db851d46267701fa3d4d8 /lib/output/folder.js | |
parent | 3154d37e41da68a16ef29ec69d8896acd9da336a (diff) | |
download | gitbook-d8ed34beba05bde85af420cc4e42a065021653dc.zip gitbook-d8ed34beba05bde85af420cc4e42a065021653dc.tar.gz gitbook-d8ed34beba05bde85af420cc4e42a065021653dc.tar.bz2 |
Add method to fetch remote image with AssetsInliner
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; |