covid-19/sim/js/helpers.js
2020-04-23 12:21:18 -04:00

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)];
};