UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 194 B
/** * Exclusive OR. Returns items that are present in a single array. * - like ptyhon's `symmetric_difference` */ declare function xor(arr1: any, arr2: any): any[]; export default xor;