mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-25 05:21:24 +01:00
merge completed... now to fix all the bugs...
This commit is contained in:
commit
87c4d80fbc
3472 changed files with 466748 additions and 6517 deletions
27
node_modules/array-includes/index.js
generated
vendored
Normal file
27
node_modules/array-includes/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
'use strict';
|
||||
|
||||
var define = require('define-properties');
|
||||
var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible');
|
||||
var callBind = require('call-bind');
|
||||
var callBound = require('call-bind/callBound');
|
||||
|
||||
var implementation = require('./implementation');
|
||||
var getPolyfill = require('./polyfill');
|
||||
var polyfill = callBind.apply(getPolyfill());
|
||||
var shim = require('./shim');
|
||||
|
||||
var $slice = callBound('Array.prototype.slice');
|
||||
|
||||
/* eslint-disable no-unused-vars */
|
||||
var boundShim = function includes(array, searchElement) {
|
||||
/* eslint-enable no-unused-vars */
|
||||
RequireObjectCoercible(array);
|
||||
return polyfill(array, $slice(arguments, 1));
|
||||
};
|
||||
define(boundShim, {
|
||||
getPolyfill: getPolyfill,
|
||||
implementation: implementation,
|
||||
shim: shim
|
||||
});
|
||||
|
||||
module.exports = boundShim;
|
||||
Loading…
Add table
Add a link
Reference in a new issue