Skip to content

Instantly share code, notes, and snippets.

@inta
inta / eventhelper.js
Last active April 13, 2016 07:12
Helper functions to limit events
function once(fn) {
var once = function(e) {
var context = this,
args = arguments;
context.removeEventListener(e.type, once);
fn.apply(context, args);
};
return once;