Commit d66eaee7 by Dalton Santos

Drop dependency lodash.isarray

parent 8b46b392
......@@ -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",
......
......@@ -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',
......@@ -116,7 +115,7 @@ var specSuite = {
};
function customizer(objValue, srcValue) {
if (isArray(objValue)) {
if (Array.isArray(objValue)) {
return objValue.concat(srcValue);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment