Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove deprecated lodash.isarray #3

Merged
merged 1 commit into from
Jun 26, 2020
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
chore: remove deprecated lodash.isarray
  • Loading branch information
JackuB committed Jun 26, 2020
commit 12b174a3835aea8f2d44aafec2dfe195bc8a98ec
3 changes: 1 addition & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphlib",
"version": "2.1.9-patch.2",
"version": "2.1.9-patch.3",
"main": [
"dist/graphlib.core.js"
],
Expand All @@ -25,7 +25,6 @@
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.has": "^4.5.2",
"lodash.isarray": "^4.0.0",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.isundefined": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions lib/lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ if (typeof require === "function") {
constant: require("lodash.constant"),
each: require("lodash.foreach"),
filter: require("lodash.filter"),
has: require("lodash.has"),
isArray: require("lodash.isarray"),
has: require("lodash.has"),
isArray: Array.isArray,
isEmpty: require("lodash.isempty"),
isFunction: require("lodash.isfunction"),
isUndefined: require("lodash.isundefined"),
Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '2.1.9-patch.2';
module.exports = '2.1.9-patch.3';
7 changes: 1 addition & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@snyk/graphlib",
"version": "2.1.9-patch.2",
"version": "2.1.9-patch.3",
"description": "A directed and undirected multi-graph library",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"license": "MIT",
Expand All @@ -20,7 +20,6 @@
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.has": "^4.5.2",
"lodash.isarray": "^4.0.0",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.isundefined": "^3.0.1",
Expand Down