/* ht_searcher.js --------------------------------------------------------- */ (() => { const WRAPPER = document.getElementById('search-wrapper'); const TOGGLE = document.getElementById('search-toggle'); const INPUT = document.getElementById('searchbar'); const LIST = document.getElementById('searchresults'); const HOTKEY = 83; // āsā let worker, debounce; function startWorker() { if (worker) return; worker = new Worker('/search-worker.js', { type:'module' }); worker.onmessage = ({data}) => { LIST.innerHTML = data.slice(0,30).map(h => `