Sha256: fc4429d7cd9b2b241877d0f28c746a7475341126077c4c165cfe78806a266d2f
Contents?: true
Size: 437 Bytes
Versions: 453
Compression:
Stored size: 437 Bytes
Contents
/** * Appends the elements of `values` to `array`. * * @private * @param {Array} array The array to modify. * @param {Array} values The values to append. * @returns {Array} Returns `array`. */ function arrayPush(array, values) { var index = -1, length = values.length, offset = array.length; while (++index < length) { array[offset + index] = values[index]; } return array; } module.exports = arrayPush;
Version data entries
453 entries across 351 versions & 37 rubygems