diff options
Diffstat (limited to 'lib/backbone/page.js')
-rw-r--r-- | lib/backbone/page.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/backbone/page.js b/lib/backbone/page.js index fdfe3f7..33bd636 100644 --- a/lib/backbone/page.js +++ b/lib/backbone/page.js @@ -10,6 +10,10 @@ function Page(book, filename) { this.filename = filename; } +// Return the filename of the page with another extension +Page.prototype.withExtension = function(ext) { + return +}; module.exports = Page; |