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