This commit is contained in:
thewesker
2016-06-18 13:24:12 -04:00
parent 3b5c6ad50a
commit f8c72a5a29
1630 changed files with 164207 additions and 0 deletions

10
node_modules/lowdb/json.js generated vendored Normal file
View File

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