first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

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

@@ -0,0 +1,12 @@
var has = Object.prototype.hasOwnProperty;
module.exports = function assign(target, source) {
if (Object.assign) {
return Object.assign(target, source);
}
for (var key in source) {
if (has.call(source, key)) {
target[key] = source[key];
}
}
return target;
};

3
build/node_modules/es-abstract/helpers/isFinite.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
var $isNaN = Number.isNaN || function (a) { return a !== a; };
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };

3
build/node_modules/es-abstract/helpers/isNaN.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};

View File

@@ -0,0 +1,3 @@
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};

4
build/node_modules/es-abstract/helpers/mod.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
module.exports = function mod(number, modulo) {
var remain = number % modulo;
return Math.floor(remain >= 0 ? remain : remain + modulo);
};

3
build/node_modules/es-abstract/helpers/sign.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
module.exports = function sign(number) {
return number >= 0 ? 1 : -1;
};