write-json.js 252 B

123456789
  1. 'use strict';
  2. var DEFAULT_INDENTATION = 2;
  3. module.exports = function (filepath, contents, replacer, space) {
  4. var jsonStr = JSON.stringify(contents, replacer || null, space || DEFAULT_INDENTATION) + '\n';
  5. return this.write(filepath, jsonStr);
  6. };