3 lines
96 B
JavaScript
3 lines
96 B
JavaScript
const without = (arr, ...args) => arr.filter(v => !args.includes(v));
|
|
module.exports = without;
|