diff --git a/index.js b/index.js index 00aba59f..1227dce4 100644 --- a/index.js +++ b/index.js @@ -156,7 +156,6 @@ exports.outputFileAtomic = (file, data, encoding) => this.outputFile(file, data, exports.outputJSON = exports.outputJson = async (file, data, options, atomic = false) => { const dir = dirname(file); if (!await this.pathExists(dir)) await this.mkdirs(dir); - return this.writeJSON(file, data, options, atomic); };