12 lines
337 B
JavaScript
12 lines
337 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');
|
|
Object.hasOwn = hasOwn;
|
|
}
|
|
}
|
|
applyPolyfills();
|
|
export default applyPolyfills;
|