diff options
Diffstat (limited to 'node_modules/json5/lib/index.js')
-rw-r--r-- | node_modules/json5/lib/index.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/json5/lib/index.js b/node_modules/json5/lib/index.js new file mode 100644 index 0000000..3679638 --- /dev/null +++ b/node_modules/json5/lib/index.js @@ -0,0 +1,9 @@ +const parse = require('./parse') +const stringify = require('./stringify') + +const JSON5 = { + parse, + stringify, +} + +module.exports = JSON5 |