All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
386 B
JavaScript
15 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
|
|
}
|
|
};
|