Package Exports
- array-difference
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (array-difference) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Array Difference
Utility method to compute the difference between two arrays. AMD and CommonJS compatible; works in Node.js and the browser.
Installation
$ npm install array-differenceUsage
var array1 = [1, 2, 3];
var array2 = [2, 3, 4];
difference(array1, array2); // yeilds [1, 4]License
Copyright (c) 2013 Mike Pennisi
Licensed under the MIT Expat license.
