feige
2024-06-16 780c1858c9d8f3adf17287ddc4c717833e305c65
1
2
3
4
5
6
7
'use strict';
 
var implementation = require('./implementation');
 
module.exports = function getPolyfill() {
    return typeof Object.is === 'function' ? Object.is : implementation;
};