mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
'use strict';
|
|
|
|
var DEFAULT_INDENTATION = 2;
|
|
|
|
module.exports = function (filepath, contents, replacer, space) {
|
|
var jsonStr = JSON.stringify(contents, replacer || null, space || DEFAULT_INDENTATION) + '\n';
|
|
|
|
return this.write(filepath, jsonStr);
|
|
};
|