Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.
|
- 'use strict';
-
- var define = require('define-properties');
- var getPolyfill = require('./polyfill');
-
- module.exports = function shimArrayPrototypeIncludes() {
- var polyfill = getPolyfill();
- define(
- Array.prototype,
- { includes: polyfill },
- { includes: function () { return Array.prototype.includes !== polyfill; } }
- );
- return polyfill;
- };
|