Files
site/nova-components/NovaLeader/node_modules/object-is/polyfill.js
2025-04-21 16:03:20 +02:00

8 lines
181 B
JavaScript
Vendored

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Object.is === 'function' ? Object.is : implementation;
};