lepu-test-platform-web/node_modules/object-is/polyfill.js

8 lines
181 B
JavaScript
Raw Permalink Normal View History

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