Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. };