From d11a846d319e045b71606642d1a2f47bc8ec0ad0 Mon Sep 17 00:00:00 2001 From: bdistin Date: Fri, 30 Jun 2017 18:49:49 -0500 Subject: [PATCH] Update index.js --- index.js | 1 - 1 file changed, 1 deletion(-) 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); };