Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Drop dependency lodash.isarray
Browse files Browse the repository at this point in the history
  • Loading branch information
daltones committed Dec 10, 2016
1 parent 8b46b39 commit d66eaee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
"in-publish": "^2.0.0",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.3.2",
"lodash.isarray": "^4.0.0",
"lodash.mergewith": "^4.6.0",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
Expand Down
3 changes: 1 addition & 2 deletions test/spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ var assert = require('assert'),
readYaml = require('read-yaml'),
mergeWith = require('lodash.mergewith'),
assign = require('lodash.assign'),
isArray = require('lodash.isarray'),
glob = require('glob'),
specPath = require('sass-spec').dirname.replace(/\\/g, '/'),
impl = 'libsass',
Expand Down Expand Up @@ -116,7 +115,7 @@ var specSuite = {
};

function customizer(objValue, srcValue) {
if (isArray(objValue)) {
if (Array.isArray(objValue)) {
return objValue.concat(srcValue);
}
}
Expand Down

0 comments on commit d66eaee

Please sign in to comment.