const $ = function(selector) { return document.querySelector(selector); }; const $$ = function(selector) { return document.querySelectorAll(selector) || []; }; const makeEl = function(html) { const template = document.createElement('template'); template.innerHTML = html.trim(); return template.content.firstChild; }; const clearEl = function(el) { while (el.firstChild) { el.removeChild(el.firstChild); } }; const toggleEl = function(el) { if (el.classList.contains('is-hidden')) { el.classList.remove('is-hidden'); } else { el.classList.add('is-hidden'); } }; const escape = function(unsafe) { return unsafe .replace(/&/g, "&") .replace(//g, ">") .replace(/"/g, """) .replace(/'/g, "'"); } const whenReady = function(funcp) { if (document.readyState !== 'loading') { funcp(); } else { document.addEventListener('DOMContentLoaded', funcp); } } export { whenReady, $, $$, makeEl, clearEl, toggleEl, escape };