auth-api/tests/node_modules/object-is/shim.js

15 lines
306 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimObjectIs() {
var polyfill = getPolyfill();
define(Object, { is: polyfill }, {
is: function testObjectIs() {
return Object.is !== polyfill;
}
});
return polyfill;
};