UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

14 lines (13 loc) 501 B
export default baseDifference; /** * The base implementation of methods like `difference` without support * for excluding multiple arrays. * * @private * @param array The array to inspect. * @param values The values to exclude. * @param iteratee The iteratee invoked per element. * @param comparator The comparator invoked per element. * @returns Returns the new array of filtered values. */ declare function baseDifference(array: any, values: any, iteratee?: any, comparator?: any): any[];