deno.land / x / lodash@4.17.19 / npm-package / _copyArray.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */function copyArray(source, array) { var index = -1, length = source.length;
array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array;}
module.exports = copyArray;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉