anxiety/scripts/lib/helpers.js

7 lines
146 B
JavaScript
Raw Normal View History

2019-04-18 11:40:22 +00:00
// I'm twice the number you'll ever be
Math.TAU = Math.PI*2;
// The poor man's jQuery
function $(query){
return document.querySelector(query);
}