WUT_Computer_Science/EGUI/lab3/front/node_modules/object.hasown/shim.js

15 lines
311 B
JavaScript
Raw Normal View History

2022-06-15 03:02:51 +02:00
'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimObjectHasOwn() {
var polyfill = getPolyfill();
define(
Object,
{ hasOwn: polyfill },
{ hasOwn: function () { return Object.hasOwn !== polyfill; } }
);
return polyfill;
};