Skip to content

Commit 84c729d

Browse files
authored
refactor: replace lodash isEqual with fast-deep-equal (#98)
1 parent 1bab8e7 commit 84c729d

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

package-lock.json

Lines changed: 5 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
"@rollup/plugin-node-resolve": "^10.0.0",
3535
"@types/googlemaps": "^3.39.3",
3636
"@types/jest": "^26.0.10",
37-
"@types/lodash": "^4.14.165",
3837
"@types/selenium-webdriver": "^4.0.9",
3938
"@typescript-eslint/eslint-plugin": ">=2.25.0",
4039
"@typescript-eslint/parser": ">=2.25.0",
@@ -60,6 +59,6 @@
6059
"registry": "https://wombat-dressing-room.appspot.com"
6160
},
6261
"dependencies": {
63-
"lodash": "^4.17.20"
62+
"fast-deep-equal": "^3.1.3"
6463
}
6564
}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import isEqual from "lodash/fp/isEqual";
17+
import isEqual from "fast-deep-equal";
1818

1919
/**
2020
* @ignore

0 commit comments

Comments
 (0)