Skip to content

Instantly share code, notes, and snippets.

View mohanarpit's full-sized avatar

Arpit Mohan mohanarpit

View GitHub Profile
@mohanarpit
mohanarpit / bling.js
Created March 12, 2016 10:16 — forked from KittyGiraudel/bling.js
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;