UNPKG

preact-island

Version:

🏝 Create your own slice of paradise on any website.

9 lines (7 loc) 195 B
export const getById = (x: string) => { const element = document.getElementById(x) if (element == null) { throw new Error(`Could not find element with id: ${x}!`) } return element }