UNPKG

timing-object

Version:

An implementation of the timing object specification.

9 lines 298 B
export const createEventTargetFactory = (window) => { return () => { if (window === null) { throw new Error('A native EventTarget could not be created.'); } return window.document.createElement('p'); }; }; //# sourceMappingURL=event-target-factory.js.map