選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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