From 007f9f0c360465fdfa49916d65851813f1d4bc12 Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Fri, 11 Nov 2016 15:05:07 +0100 Subject: [PATCH] Remove console.log --- fs.js | 1 - 1 file changed, 1 deletion(-) diff --git a/fs.js b/fs.js index ed61686..25ca524 100644 --- a/fs.js +++ b/fs.js @@ -44,7 +44,6 @@ module.exports = { */ read: function read (aPath, options) { var flags = optionsFrom(options).flags - console.log(flags) return Q.ninvoke(fs, 'readFile', aPath, { encoding: flags === 'b' ? null : 'utf-8' })