allotment icon indicating copy to clipboard operation
allotment copied to clipboard

`lodash.isequal` is deprecated

Open bk201- opened this issue 8 months ago • 1 comments

The last version of lodash.isequal is deprecated.

npm warn deprecated [email protected]: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.

I've seen that some maintainers from different project switched to es-toolkit.

It looks like very simple migration:

  1. Switch to es-toolkit;
  2. Replace: import *** from "lodash.***"; to import { *** } from "es-toolkit";

bk201- avatar Apr 29 '25 10:04 bk201-

I've changed it here to the fastest lib fast-deep-equal https://github.com/johnwalley/allotment/pull/865

GusevP avatar Dec 10 '25 09:12 GusevP