mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
5 lines
142 B
JavaScript
5 lines
142 B
JavaScript
|
export const dispatchCustomEvent = ({ name, detail }) => {
|
||
|
let event = new CustomEvent(name, { detail });
|
||
|
window.dispatchEvent(event);
|
||
|
};
|