diff options
Diffstat (limited to 'lib/page.js')
-rw-r--r-- | lib/page.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/page.js b/lib/page.js new file mode 100644 index 0000000..a6c2caf --- /dev/null +++ b/lib/page.js @@ -0,0 +1,10 @@ + + +function Page() { + if (!(this instanceof Page)) return new Page(); + +} + + + +module.exports = Page; |