main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
726 bytes
|
Line | |
---|
1 | # fast-shallow-equal
|
---|
2 |
|
---|
3 | [![][npm-badge]][npm-url] [![][travis-badge]][travis-url]
|
---|
4 |
|
---|
5 | Very fast shallow equal, based on [`fast-deep-equal`](https://github.com/epoberezkin/fast-deep-equal).
|
---|
6 |
|
---|
7 |
|
---|
8 | ## Installation
|
---|
9 |
|
---|
10 | <pre>
|
---|
11 | npm i <a href="https://www.npmjs.com/package/fast-shallow-equal">fast-shallow-equal</a> --save
|
---|
12 | </pre>
|
---|
13 |
|
---|
14 |
|
---|
15 | ## Usage
|
---|
16 |
|
---|
17 | ```js
|
---|
18 | import {equal} from 'fast-shallow-equal';
|
---|
19 |
|
---|
20 | equal(a, b);
|
---|
21 | ```
|
---|
22 |
|
---|
23 |
|
---|
24 | ## License
|
---|
25 |
|
---|
26 | [Unlicense](./LICENSE) — public domain.
|
---|
27 |
|
---|
28 |
|
---|
29 | [npm-url]: https://www.npmjs.com/package/fast-shallow-equal
|
---|
30 | [npm-badge]: https://img.shields.io/npm/v/fast-shallow-equal.svg
|
---|
31 | [travis-url]: https://travis-ci.org/streamich/fast-shallow-equal
|
---|
32 | [travis-badge]: https://travis-ci.org/streamich/fast-shallow-equal.svg?branch=master
|
---|
Note:
See
TracBrowser
for help on using the repository browser.