Javascript – Criação de seletor semelhante ao jQuery e ouvinte de adição de evento

var $ = document.querySelectorAll.bind(document);
Element.prototype.on = Element.prototype.addEventListener;

$
('#somelink')[0].on('touchstart', handleTouch);