@f/equal
v1.0.1
Published
Check two things for shallow equality
Downloads
11
Readme
equal
Check two things for shallow equality
Installation
$ npm install @f/equal
Usage
var equal = require('@f/equal')
if (equal(nextProps, prevProps)) {
component.render(nextProps)
}
API
equal(a, b)
a
- An array/object/value to check againstb
for equalityb
- An array/object/value to check againsta
for equality
Returns: A Boolean value indicating whether a
and b
are shallow equal.
License
MIT