UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

5 lines (4 loc) 154 B
export default function arrayDiffer(array, ...values) { const rest = new Set([...values].flat()); return array.filter(element => !rest.has(element)); }