mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 20:23:10 +02:00
15 lines
311 B
JavaScript
15 lines
311 B
JavaScript
'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;
|
|
};
|