PC/node_modules/object-is/polyfill.js
2026-01-26 23:20:48 +08:00

8 lines
181 B
JavaScript

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Object.is === 'function' ? Object.is : implementation;
};