mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 22:43:18 +02:00
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return Object.hasOwn || implementation;
|
|
};
|