source: imaps-frontend/node_modules/fast-shallow-equal/README.md@ d565449

main
Last change on this file since d565449 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
RevLine 
[d565449]1# fast-shallow-equal
2
3[![][npm-badge]][npm-url] [![][travis-badge]][travis-url]
4
5Very fast shallow equal, based on [`fast-deep-equal`](https://github.com/epoberezkin/fast-deep-equal).
6
7
8## Installation
9
10<pre>
11npm 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
18import {equal} from 'fast-shallow-equal';
19
20equal(a, b);
21```
22
23
24## License
25
26[Unlicense](./LICENSE) &mdash; 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.