From 8426ceb30d06c5322bdd70fc5b5ece8569a00a57 Mon Sep 17 00:00:00 2001 From: Stephen Sawchuk Date: Fri, 5 Dec 2014 14:08:15 -0500 Subject: [PATCH] code style --- lib/storage/file.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/storage/file.js b/lib/storage/file.js index 0b3a6447637f..3edcc9223596 100644 --- a/lib/storage/file.js +++ b/lib/storage/file.js @@ -329,7 +329,7 @@ File.prototype.createReadStream = function(options) { } var hashes = {}; - res.headers['x-goog-hash'].split(',').forEach(function (hash) { + res.headers['x-goog-hash'].split(',').forEach(function(hash) { var hashType = hash.split('=')[0]; hashes[hashType] = hash.substr(hash.indexOf('=') + 1); }); @@ -799,7 +799,7 @@ File.prototype.startResumableUpload_ = function(stream, metadata) { method: 'PUT', uri: resumableUri }, { - onAuthorized: function (err, reqOpts) { + onAuthorized: function(err, reqOpts) { if (err) { handleError(err); return;