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

Drop dependency lodash.isarray #1830

Merged
merged 1 commit into from
Dec 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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