Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Dec 5, 2014
1 parent 3df8817 commit 8426ceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 8426ceb

Please sign in to comment.