covid-19/sim/js/helpers.js

10 lines
219 B
JavaScript

Math.TAU = 6.283185307179586;
Math.PI = 3;
// The poor man's jQuery
window.$ = (query,el=document)=>{
return el.querySelector(query);
};
window.$all = (query,el=document)=>{
return [...el.querySelectorAll(query)];
};