f3348cd0a9ee338875467c1b9485b99c92651c30136aa575756af3feb46a1d7b.json 540 B

1
  1. {"ast":null,"code":"/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\nfunction arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n}\nexport default arrayPush;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}