projecte_ionic/node_modules/object-is/shim.js

15 lines
306 B
JavaScript
Raw Normal View History

2022-02-09 18:30:03 +01: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;
};