This is a updated version of bling.js
We can used this with both querySelector($) and querySelectorAll($$)
// classic qSA result with $$ + on()
$$('p').on('click', el => /* ... */);
// classic qS with $ + on()
$('#mydiv').on('click', el => /* ... */);