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ů.

shim.js 306B

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