UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 204 B
/** * Combines an array with all the items of another. * Does not allow duplicates and is case and type sensitive. */ declare function combine(arr1: any, arr2: any): any; export default combine;