UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 169 B
/** * Appends an array to the end of another. * The first array will be modified. */ declare function append(arr1: any, arr2: any): any; export default append;