18
0
Fork 0

Suppression console.log() superflus

Esse commit está contido em:
wpetit 2016-03-03 11:02:57 +01:00
commit 6fa75ef473
1 arquivos alterados com 1 adições e 1 exclusões

Ver arquivo

@ -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);
});
});