source: node_modules/es-toolkit/dist/predicate/isEqual.mjs@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Added visualizations

  • Property mode set to 100644
File size: 179 bytes
Line 
1import { isEqualWith } from './isEqualWith.mjs';
2import { noop } from '../function/noop.mjs';
3
4function isEqual(a, b) {
5 return isEqualWith(a, b, noop);
6}
7
8export { isEqual };
Note: See TracBrowser for help on using the repository browser.