8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return Object.hasOwn || implementation;
|
|
};
|