1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-17 10:46:01 +00:00
This commit is contained in:
MatteZ02
2020-03-03 22:30:50 +02:00
parent edfcc6f474
commit 30022c7634
11800 changed files with 1984416 additions and 1 deletions

8
node_modules/core-js/es/instance/bind.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var bind = require('../function/virtual/bind');
var FunctionPrototype = Function.prototype;
module.exports = function (it) {
var own = it.bind;
return it === FunctionPrototype || (it instanceof Function && own === FunctionPrototype.bind) ? bind : own;
};

9
node_modules/core-js/es/instance/code-point-at.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var codePointAt = require('../string/virtual/code-point-at');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.codePointAt;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.codePointAt) ? codePointAt : own;
};

8
node_modules/core-js/es/instance/concat.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var concat = require('../array/virtual/concat');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.concat;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own;
};

8
node_modules/core-js/es/instance/copy-within.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var copyWithin = require('../array/virtual/copy-within');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.copyWithin;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.copyWithin) ? copyWithin : own;
};

9
node_modules/core-js/es/instance/ends-with.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var endsWith = require('../string/virtual/ends-with');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.endsWith;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.endsWith) ? endsWith : own;
};

8
node_modules/core-js/es/instance/entries.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var entries = require('../array/virtual/entries');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.entries;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.entries) ? entries : own;
};

8
node_modules/core-js/es/instance/every.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var every = require('../array/virtual/every');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.every;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.every) ? every : own;
};

8
node_modules/core-js/es/instance/fill.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var fill = require('../array/virtual/fill');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.fill;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.fill) ? fill : own;
};

8
node_modules/core-js/es/instance/filter.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var filter = require('../array/virtual/filter');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.filter;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.filter) ? filter : own;
};

8
node_modules/core-js/es/instance/find-index.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var findIndex = require('../array/virtual/find-index');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.findIndex;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.findIndex) ? findIndex : own;
};

8
node_modules/core-js/es/instance/find.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var find = require('../array/virtual/find');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.find;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.find) ? find : own;
};

7
node_modules/core-js/es/instance/flags.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
var flags = require('../regexp/flags');
var RegExpPrototype = RegExp.prototype;
module.exports = function (it) {
return (it === RegExpPrototype || it instanceof RegExp) && !('flags' in it) ? flags(it) : it.flags;
};

8
node_modules/core-js/es/instance/flat-map.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var flatMap = require('../array/virtual/flat-map');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.flatMap;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.flatMap) ? flatMap : own;
};

8
node_modules/core-js/es/instance/flat.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var flat = require('../array/virtual/flat');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.flat;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.flat) ? flat : own;
};

8
node_modules/core-js/es/instance/for-each.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var forEach = require('../array/virtual/for-each');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.forEach;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.forEach) ? forEach : own;
};

13
node_modules/core-js/es/instance/includes.js generated vendored Normal file
View File

@ -0,0 +1,13 @@
var arrayIncludes = require('../array/virtual/includes');
var stringIncludes = require('../string/virtual/includes');
var ArrayPrototype = Array.prototype;
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.includes;
if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes;
if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) {
return stringIncludes;
} return own;
};

8
node_modules/core-js/es/instance/index-of.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var indexOf = require('../array/virtual/index-of');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.indexOf;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own;
};

8
node_modules/core-js/es/instance/keys.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var keys = require('../array/virtual/keys');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.keys;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.keys) ? keys : own;
};

8
node_modules/core-js/es/instance/last-index-of.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var lastIndexOf = require('../array/virtual/last-index-of');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.lastIndexOf;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.lastIndexOf) ? lastIndexOf : own;
};

8
node_modules/core-js/es/instance/map.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var map = require('../array/virtual/map');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.map;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own;
};

9
node_modules/core-js/es/instance/match-all.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var matchAll = require('../string/virtual/match-all');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.matchAll;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.matchAll) ? matchAll : own;
};

9
node_modules/core-js/es/instance/pad-end.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var padEnd = require('../string/virtual/pad-end');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.padEnd;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.padEnd) ? padEnd : own;
};

9
node_modules/core-js/es/instance/pad-start.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var padStart = require('../string/virtual/pad-start');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.padStart;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.padStart) ? padStart : own;
};

8
node_modules/core-js/es/instance/reduce-right.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var reduceRight = require('../array/virtual/reduce-right');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reduceRight;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduceRight) ? reduceRight : own;
};

8
node_modules/core-js/es/instance/reduce.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var reduce = require('../array/virtual/reduce');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reduce;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own;
};

9
node_modules/core-js/es/instance/repeat.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var repeat = require('../string/virtual/repeat');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.repeat;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.repeat) ? repeat : own;
};

8
node_modules/core-js/es/instance/reverse.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var reverse = require('../array/virtual/reverse');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reverse;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reverse) ? reverse : own;
};

8
node_modules/core-js/es/instance/slice.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var slice = require('../array/virtual/slice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.slice;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own;
};

8
node_modules/core-js/es/instance/some.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var some = require('../array/virtual/some');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.some;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.some) ? some : own;
};

8
node_modules/core-js/es/instance/sort.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var sort = require('../array/virtual/sort');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.sort;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.sort) ? sort : own;
};

8
node_modules/core-js/es/instance/splice.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var splice = require('../array/virtual/splice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.splice;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.splice) ? splice : own;
};

9
node_modules/core-js/es/instance/starts-with.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var startsWith = require('../string/virtual/starts-with');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.startsWith;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.startsWith) ? startsWith : own;
};

9
node_modules/core-js/es/instance/trim-end.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var trimEnd = require('../string/virtual/trim-end');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimEnd;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trimEnd) ? trimEnd : own;
};

9
node_modules/core-js/es/instance/trim-left.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var trimLeft = require('../string/virtual/trim-left');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimLeft;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trimLeft) ? trimLeft : own;
};

9
node_modules/core-js/es/instance/trim-right.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var trimRight = require('../string/virtual/trim-right');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimRight;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trimRight) ? trimRight : own;
};

9
node_modules/core-js/es/instance/trim-start.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var trimStart = require('../string/virtual/trim-start');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimStart;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trimStart) ? trimStart : own;
};

9
node_modules/core-js/es/instance/trim.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
var trim = require('../string/virtual/trim');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trim;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trim) ? trim : own;
};

8
node_modules/core-js/es/instance/values.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
var values = require('../array/virtual/values');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.values;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.values) ? values : own;
};