Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

15
node_modules/core-js/es/instance/at.js generated vendored Normal file
View file

@ -0,0 +1,15 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var arrayMethod = require('../array/virtual/at');
var stringMethod = require('../string/virtual/at');
var ArrayPrototype = Array.prototype;
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.at;
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.at)) return arrayMethod;
if (typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.at)) {
return stringMethod;
} return own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../function/virtual/bind');
var FunctionPrototype = Function.prototype;
module.exports = function (it) {
var own = it.bind;
return it === FunctionPrototype || (isPrototypeOf(FunctionPrototype, it) && own === FunctionPrototype.bind) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/code-point-at');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.codePointAt;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.codePointAt) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/concat');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.concat;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.concat) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/copy-within');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.copyWithin;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.copyWithin) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/ends-with');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.endsWith;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.endsWith) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/entries');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.entries;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.entries) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/every');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.every;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.every) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/fill');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.fill;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.fill) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/filter');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.filter;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.filter) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/find-index');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.findIndex;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.findIndex) ? method : own;
};

10
node_modules/core-js/es/instance/find-last-index.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/find-last-index');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.findLastIndex;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.findLastIndex) ? method : own;
};

10
node_modules/core-js/es/instance/find-last.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/find-last');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.findLast;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.findLast) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/find');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.find;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.find) ? method : own;
};

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

@ -0,0 +1,9 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var flags = require('../regexp/flags');
var RegExpPrototype = RegExp.prototype;
module.exports = function (it) {
return (it === RegExpPrototype || isPrototypeOf(RegExpPrototype, it)) ? flags(it) : it.flags;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/flat-map');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.flatMap;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.flatMap) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/flat');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.flat;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.flat) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/for-each');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.forEach;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.forEach) ? method : own;
};

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

@ -0,0 +1,15 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var arrayMethod = require('../array/virtual/includes');
var stringMethod = require('../string/virtual/includes');
var ArrayPrototype = Array.prototype;
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.includes;
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.includes)) return arrayMethod;
if (typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.includes)) {
return stringMethod;
} return own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/index-of');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.indexOf;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.indexOf) ? method : own;
};

11
node_modules/core-js/es/instance/is-well-formed.js generated vendored Normal file
View file

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/is-well-formed');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.isWellFormed;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.isWellFormed) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/keys');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.keys;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.keys) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/last-index-of');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.lastIndexOf;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.lastIndexOf) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/map');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.map;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.map) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/match-all');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.matchAll;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.matchAll) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/pad-end');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.padEnd;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.padEnd) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/pad-start');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.padStart;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.padStart) ? method : own;
};

10
node_modules/core-js/es/instance/push.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/push');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.push;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.push) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/reduce-right');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reduceRight;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.reduceRight) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/reduce');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reduce;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.reduce) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/repeat');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.repeat;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.repeat) ? method : own;
};

11
node_modules/core-js/es/instance/replace-all.js generated vendored Normal file
View file

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/replace-all');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.replaceAll;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.replaceAll) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/reverse');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.reverse;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.reverse) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/slice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.slice;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.slice) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/some');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.some;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.some) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/sort');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.sort;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.sort) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/splice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.splice;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.splice) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/starts-with');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.startsWith;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.startsWith) ? method : own;
};

10
node_modules/core-js/es/instance/to-reversed.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/to-reversed');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.toReversed;
return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.toReversed)) ? method : own;
};

10
node_modules/core-js/es/instance/to-sorted.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/to-sorted');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.toSorted;
return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.toSorted)) ? method : own;
};

10
node_modules/core-js/es/instance/to-spliced.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/to-spliced');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.toSpliced;
return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.toSpliced)) ? method : own;
};

11
node_modules/core-js/es/instance/to-well-formed.js generated vendored Normal file
View file

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/to-well-formed');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.toWellFormed;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.toWellFormed) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/trim-end');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimEnd;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trimEnd) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/trim-left');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimLeft;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trimLeft) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/trim-right');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimRight;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trimRight) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/trim-start');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimStart;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trimStart) ? method : own;
};

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

@ -0,0 +1,11 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/trim');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trim;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trim) ? method : own;
};

10
node_modules/core-js/es/instance/unshift.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/unshift');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.unshift;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.unshift) ? method : own;
};

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

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/values');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.values;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.values) ? method : own;
};

10
node_modules/core-js/es/instance/with.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/with');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it['with'];
return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype['with'])) ? method : own;
};