UNPKG

worker-with-import-map

Version:
13 lines (12 loc) 273 B
/** * @returns {object | undefined} */ function getImportMap() { /** @type {HTMLScriptElement|null} */ const e = document.querySelector('script[type="importmap"]'); if (!e?.textContent) { return; } return JSON.parse(e.textContent); } export {getImportMap};