Files
bug-em/node_modules/lowdb/json.js
thewesker f8c72a5a29 DMs
2016-06-18 13:24:12 -04:00

10 lines
187 B
JavaScript

'use strict';
var jph = require('json-parse-helpfulerror');
module.exports = {
parse: jph.parse,
stringify: function stringify(obj) {
return JSON.stringify(obj, null, 2);
}
};