projecte_ionic/node_modules/object-is/shim.js
2022-02-09 18:30:03 +01:00

15 lines
306 B
JavaScript
Executable file

'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;
};