Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/e435ac43746f5d33f6232fa1566...

1 line
543 B
JSON

{"ast":null,"code":"/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n array || (array = Array(length));\n\n while (++index < length) {\n array[index] = source[index];\n }\n\n return array;\n}\n\nmodule.exports = copyArray;","map":null,"metadata":{},"sourceType":"script"}