first commit

This commit is contained in:
ghazall-ag
2026-01-01 21:35:03 +03:30
commit 1f7f2f8f86
15308 changed files with 1647442 additions and 0 deletions

22
node_modules/es-abstract/helpers/assign.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
'use strict';
var GetIntrinsic = require('get-intrinsic');
var hasOwn = require('hasown');
var $assign = GetIntrinsic('%Object.assign%', true);
module.exports = function assign(target, source) {
if ($assign) {
return $assign(target, source);
}
// eslint-disable-next-line no-restricted-syntax
for (var key in source) {
if (hasOwn(source, key)) {
// eslint-disable-next-line no-param-reassign
target[key] = source[key];
}
}
return target;
};