@feugene/mu
Version:
Helpful TS utilities without dependencies
14 lines • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = difference;
/**
* The difference will output the elements from array A that are not in the array B.
*
* @param {Array} array
* @param {Array} array2
* @returns {any[]}
*/
function difference(array, array2) {
return [...new Set(array.filter(x => !array2.includes(x)))];
}
//# sourceMappingURL=difference.js.map