You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
![]()
1 week ago
|
'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
|
||
|
}
|
||
|
};
|