Sha256: 455d512af3501613c1a3d68370d3130d7cc6e9cb120d7471d2e5a74363cfee29
Contents?: true
Size: 418 Bytes
Versions: 69
Compression:
Stored size: 418 Bytes
Contents
/** * Appends an array to the end of another. * The first array will be modified. */ function append(arr1, arr2) { if (arr2 == null) { return arr1; } var pad = arr1.length, i = -1, len = arr2.length; while (++i < len) { arr1[pad + i] = arr2[i]; } return arr1; } module.exports = append;
Version data entries
69 entries across 69 versions & 2 rubygems