Suppression console.log() superflus

このコミットが含まれているのは:
wpetit 2016-03-03 11:02:57 +01:00
コミット 6fa75ef473
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -1,3 +1,4 @@
/* jshint node:true */
var fs = require('fs');
var cp = require('child_process');
var glob = require('glob');
@ -30,7 +31,6 @@ exports.fetchRemoteJSON = function(fileUrl) {
return new Promise(function(resolve, reject) {
request(fileUrl, { followRedirect: true, json: true }, function (err, res, body) {
if(err) return reject(err);
console.log(body);
return resolve(body);
});
});