文件名称:shallowequal:Like像lodash v3.x isEqualWith,但浅浅等于
文件大小:96KB
文件格式:ZIP
更新时间:2024-06-02 07:58:48
javascript utility equality comparison shallowequal
浅等 shallowequal相等类似于lodash的 (v3.10.1),但对于浅(严格)相等。 shallowequal(value, other, [customizer], [thisArg]) 在两个值(即value和other )之间执行浅等式比较,以确定它们是否等效。 如果value和other已经严格相等,则相等检查返回true;或者,如果满足以下所有条件,则相等检查返回true: value和other都是具有相同键的对象 对于每个键, value和other的值严格相等( === ) 如果提供了customizer (预期是一个函数),则会调用它来比较值。 如果customizer程序返回undefined (即void 0 ),那么比较将由shallowequal函数处理。 customizer程序绑定到thisArg并使用三个参数调用:( (value
【文件预览】:
shallowequal-master
----.gitignore(37B)
----.flowconfig(221B)
----package.json(2KB)
----index.js.flow(185B)
----.travis.yml(124B)
----LICENSE(1KB)
----index.js(996B)
----README.md(2KB)
----index.original.js(1KB)
----babel.config.js(149B)
----.npmignore(9B)
----type-check.js(737B)
----renovate.json(41B)
----test()
--------shallowequal.test.js(5KB)
----yarn.lock(236KB)