UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

12 lines (11 loc) 271 B
/** * Appends the elements of `values` to `array`. * * @private * @ignore * @param array The array to modify. * @param values The values to append. * @returns Returns `array`. */ declare function arrayPush(array: any, values: any): any; export default arrayPush;