sunrise-cms/helpers/polyfills.js

12 lines
328 B
JavaScript

import hasOwn from 'object.hasown';
import Debug from 'debug';
const debug = Debug('lot-occupancy-system:polyfills');
export function applyPolyfills() {
if (Object.hasOwn === undefined) {
debug('Applying Object.hasOwn(o, v) polyfill');
hasOwn.shim();
}
}
applyPolyfills();
export default applyPolyfills;