Frontend/25_01_07/mai/node_modules/safe-push-apply/index.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00

16 lines
386 B
JavaScript

'use strict';
var $TypeError = require('es-errors/type');
var isArray = require('isarray');
/** @type {import('.')} */
module.exports = function safePushApply(target, source) {
if (!isArray(target)) {
throw new $TypeError('target must be an array');
}
for (var i = 0; i < source.length; i++) {
target[target.length] = source[i]; // eslint-disable-line no-param-reassign
}
};