You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
3
+
> Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
4
4
5
5
## Install
6
6
7
7
Install with [npm](https://www.npmjs.com/):
8
8
9
9
```sh
10
-
$ npm install arr-diff --save
10
+
$ npm install --save arr-diff
11
11
```
12
12
13
-
Install with [bower](http://bower.io/)
13
+
Install with [yarn](https://yarnpkg.com):
14
+
15
+
```sh
16
+
$ yarn add arr-diff
17
+
```
18
+
19
+
Install with [bower](https://bower.io/)
14
20
15
21
```sh
16
22
$ bower install arr-diff --save
@@ -32,68 +38,93 @@ console.log(diff(a, b))
32
38
33
39
## Benchmarks
34
40
35
-
This library versus [array-differ](https://github.com/sindresorhus/array-differ), on May 07, 2016:
41
+
This library versus [array-differ](https://github.com/sindresorhus/array-differ), on April 14, 2017:
36
42
37
43
```
44
+
Benchmarking: (4 of 4)
45
+
· long-dupes
46
+
· long
47
+
· med
48
+
· short
49
+
50
+
# benchmark/fixtures/long-dupes.js (100804 bytes)
51
+
arr-diff-3.0.0 x 822 ops/sec ±0.67% (86 runs sampled)
52
+
arr-diff-4.0.0 x 2,141 ops/sec ±0.42% (89 runs sampled)
53
+
array-differ x 708 ops/sec ±0.70% (89 runs sampled)
54
+
55
+
fastest is arr-diff-4.0.0
56
+
38
57
# benchmark/fixtures/long.js (94529 bytes)
39
-
current x 1,246 ops/sec ±0.98% (85 runs sampled)
40
-
array-differ x 993 ops/sec ±1.35% (87 runs sampled)
58
+
arr-diff-3.0.0 x 882 ops/sec ±0.60% (87 runs sampled)
59
+
arr-diff-4.0.0 x 2,329 ops/sec ±0.97% (83 runs sampled)
60
+
array-differ x 769 ops/sec ±0.61% (90 runs sampled)
61
+
62
+
fastest is arr-diff-4.0.0
41
63
42
64
# benchmark/fixtures/med.js (708 bytes)
43
-
current x 583,612 ops/sec ±1.24% (87 runs sampled)
44
-
array-differ x 464,480 ops/sec ±1.42% (85 runs sampled)
65
+
arr-diff-3.0.0 x 856,150 ops/sec ±0.42% (89 runs sampled)
66
+
arr-diff-4.0.0 x 4,665,249 ops/sec ±1.06% (89 runs sampled)
67
+
array-differ x 653,888 ops/sec ±1.02% (86 runs sampled)
68
+
69
+
fastest is arr-diff-4.0.0
45
70
46
71
# benchmark/fixtures/short.js (60 bytes)
47
-
current x 788,823 ops/sec ±0.95% (89 runs sampled)
48
-
array-differ x 521,483 ops/sec ±1.65% (86 runs sampled)
72
+
arr-diff-3.0.0 x 3,078,467 ops/sec ±0.77% (93 runs sampled)
73
+
arr-diff-4.0.0 x 9,213,296 ops/sec ±0.65% (89 runs sampled)
74
+
array-differ x 1,337,051 ops/sec ±0.91% (92 runs sampled)
75
+
76
+
fastest is arr-diff-4.0.0
49
77
```
50
78
51
-
## Related projects
79
+
## About
52
80
53
-
You might also be interested in these projects:
81
+
### Related projects
54
82
55
-
*[arr-flatten](https://www.npmjs.com/package/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | [homepage](https://github.com/jonschlinkert/arr-flatten)
56
-
*[array-filter](https://www.npmjs.com/package/array-filter): Array#filter for older browsers. | [homepage](https://github.com/juliangruber/array-filter)
57
-
*[array-intersection](https://www.npmjs.com/package/array-intersection): Return an array with the unique values present in _all_ given arrays using strict equality… [more](https://www.npmjs.com/package/array-intersection) | [homepage](https://github.com/jonschlinkert/array-intersection)
83
+
*[arr-flatten](https://www.npmjs.com/package/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | [homepage](https://github.com/jonschlinkert/arr-flatten"Recursively flatten an array or arrays. This is the fastest implementation of array flatten.")
84
+
*[array-filter](https://www.npmjs.com/package/array-filter): Array#filter for older browsers. | [homepage](https://github.com/juliangruber/array-filter"Array#filter for older browsers.")
85
+
*[array-intersection](https://www.npmjs.com/package/array-intersection): Return an array with the unique values present in _all_ given arrays using strict equality… [more](https://github.com/jonschlinkert/array-intersection) | [homepage](https://github.com/jonschlinkert/array-intersection"Return an array with the unique values present in _all_ given arrays using strict equality for comparisons.")
58
86
59
-
## Contributing
87
+
###Contributing
60
88
61
-
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/arr-diff/issues/new).
89
+
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
62
90
63
-
##Building docs
91
+
### Contributors
64
92
65
-
Generate readme and API documentation with [verb](https://github.com/verbose/verb):
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
70
101
71
-
Or, if [verb](https://github.com/verbose/verb) is installed globally:
102
+
To generate the readme, run the following command:
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
0 commit comments