UNPKG

@design-automation/mobius-inline-funcs

Version:
9 lines (8 loc) 350 B
/** * Returns a new list of unique items from the difference of the two input lists. * The new list contains every element in list 1 that is not in list 2. * @param list1 The first list. * @param list2 The second list. * @returns A new list with no repeated values. */ export declare function setDif(list1: any[], list2: any[]): any[];