@jswork/next-root-dispatch
v1.0.3
Published
Shortcut for window.dispatchEvent.
Downloads
68
Maintainers
Readme
next-root-dispatch
Shortcut for window.dispatchEvent.
installation
yarn add @jswork/next-root-dispatch
usage
import '@jswork/next-root-dispatch';
// original usage
window.dispatchEvent(new CustomEvent('resize'));
window.dispatchEvent(new CustomEvent('my-event', { detail: { foo: 'bar' } }));
// shortcut usage
nx.rootDispatch('resize');
nx.rootDispatch('my-event', { foo: 'bar' });
license
Code released under the MIT license.