eslint-config-lemon
Version:
<div align="center"> <br> <img width="400" src="logo.svg"> <br> <br> </div>
15 lines (12 loc) • 311 B
JavaScript
;
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;
};