Index: frontend/node_modules/safe-push-apply/index.js
===================================================================
--- frontend/node_modules/safe-push-apply/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/safe-push-apply/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,15 @@
+'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
+	}
+};
