UNPKG

@uifabric/utilities

Version:

Fluent UI React utilities for building components.

5 lines 246 B
export function on(element, eventName, callback, options) { element.addEventListener(eventName, callback, options); return function () { return element.removeEventListener(eventName, callback, options); }; } //# sourceMappingURL=on.js.map