From a7a3f99749ac36fcd89cad659efa3cd1fe6ba2b2 Mon Sep 17 00:00:00 2001 From: Jason Nathan Date: Sat, 19 Nov 2016 22:22:37 +0800 Subject: [PATCH] removed fs module so this can be isomorphic The fs module isn't even used... ?? --- lib/shortcode-parser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/shortcode-parser.js b/lib/shortcode-parser.js index 5c6fb2d..dee7b37 100644 --- a/lib/shortcode-parser.js +++ b/lib/shortcode-parser.js @@ -1,7 +1,7 @@ /* lib/shortcode-parser.js */ -var fs = require('fs'); +// var fs = require('fs'); var util = require('util'); var shortcodes = {}; @@ -152,4 +152,4 @@ module.exports = { return this.parse(buf, data, context); } -} \ No newline at end of file +}