Golang bot for managing discord verifications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Gregory Rudolph 8a6e029f83
Add react
4 years ago
..
LICENSE Add react 4 years ago
README.md Add react 4 years ago
index.js Add react 4 years ago
package.json Add react 4 years ago

README.md

arr-diff NPM version Build Status

Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.

Install

Install with npm

$ npm i arr-diff --save

Install with bower

$ bower install arr-diff --save

API

diff

Return the difference between the first array and additional arrays.

Params

  • a {Array}
  • b {Array}
  • returns {Array}

Example

var diff = require('arr-diff');

var a = ['a', 'b', 'c', 'd'];
var b = ['b', 'c'];

console.log(diff(a, b))
//=> ['a', 'd']

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb on Sat Dec 05 2015 23:24:53 GMT-0500 (EST).