web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
345 B

  1. 'use strict';
  2. var define = require('define-properties');
  3. var getPolyfill = require('./polyfill');
  4. module.exports = function shimArrayPrototypeIncludes() {
  5. var polyfill = getPolyfill();
  6. define(
  7. Array.prototype,
  8. { includes: polyfill },
  9. { includes: function () { return Array.prototype.includes !== polyfill; } }
  10. );
  11. return polyfill;
  12. };