For the lazy vanilla JS peeps out there, I submit to you the following:

```
const qs = (selector) => document.querySelector(selector);
const qsa = (selector) => Array.from(document.querySelectorAll(selector));
```

social.lol/@bw/111291049147329631