sunrise-cms/helpers/polyfills.ts

16 lines
328 B
TypeScript

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