Comparing version 2.3.0 to 2.3.1
@@ -13,3 +13,3 @@ "use strict"; | ||
var http = require('http') | ||
, utils = require('./utils') | ||
, _ = require('lodash') | ||
, querystring = require('querystring'); | ||
@@ -41,3 +41,3 @@ | ||
this.options = utils.merge(this.defaults, options); | ||
this.options = _.defaults(this.defaults, options); | ||
} | ||
@@ -44,0 +44,0 @@ |
@@ -15,3 +15,3 @@ { | ||
], | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"author": "Kevin Coughlin <kevintcoughlin@gmail.com>", | ||
@@ -31,3 +31,5 @@ "contributors": [ | ||
}, | ||
"dependencies": {}, | ||
"dependencies": { | ||
"lodash": "^4.11.1" | ||
}, | ||
"devDependencies": { | ||
@@ -34,0 +36,0 @@ "supertest": "*", |
@@ -8,3 +8,3 @@ /** | ||
var Citibike = require('..'); | ||
var utils = require('../lib/utils'); | ||
var _ = require('lodash'); | ||
var should = require ('should'); | ||
@@ -61,5 +61,5 @@ | ||
var citibike = new Citibike(options); | ||
citibike.options.should.eql(utils.merge(defaults, options)); | ||
citibike.options.should.eql(_.defaults(defaults, options)); | ||
}); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18589
1
12
308
+ Addedlodash@^4.11.1
+ Addedlodash@4.17.21(transitive)