Code style consistency

Some very minor changes to improve code style consistency.
This commit is contained in:
Nicolas Gallagher
2013-05-02 19:51:51 -07:00
parent 20ca17fcac
commit de0eca7890
20 changed files with 195 additions and 184 deletions

View File

@@ -39,9 +39,9 @@ Resolver.prototype.getTempDir = function () {
};
Resolver.prototype.hasNew = function (canonicalPkg) {
var that = this,
promise,
metaFile;
var that = this;
var promise;
var metaFile;
// If already working, error out
if (this._working) {
@@ -210,4 +210,4 @@ Resolver.prototype._savePkgMeta = function (meta) {
}.bind(this));
};
module.exports = Resolver;
module.exports = Resolver;