UNPKG

fast-array-diff

Version:

Implementation of paper 'An O(ND) Difference Algorithm and Its Variations' on array

2 lines (1 loc) 98 B
export default function <T, U = T>(a: T[], b: U[], compareFunc?: (ia: T, ib: U) => boolean): T[];