Skip to content

Instantly share code, notes, and snippets.

View fabean's full-sized avatar
🐨
Koalaing it up.

Josh Fabean fabean

🐨
Koalaing it up.
View GitHub Profile
@paulirish
paulirish / bling.js
Last active February 20, 2024 14:11
bling dot js
/* bling.js */
window.$ = document.querySelectorAll.bind(document);
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn);
}
NodeList.prototype.__proto__ = Array.prototype;