UNPKG

favoritos

Version:

Favoritos is a JavaScript plugin that adds some HTML5 canvas magic to your favicon. With just a wee bit of code, we can make some really cool effects.

9 lines (7 loc) 178 B
export const fireEvent = (name: string, entry: any) => { const event = new CustomEvent(name, { bubbles: true, detail: entry, }); document.dispatchEvent(event); };