Skip to content

Instantly share code, notes, and snippets.

@Azerothian
Created December 9, 2013 04:26
Show Gist options
  • Save Azerothian/7867390 to your computer and use it in GitHub Desktop.
Save Azerothian/7867390 to your computer and use it in GitHub Desktop.
var Speaker,
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
Speaker = (function() {
function Speaker() {
this.IstheSpeakerAnIdiot = __bind(this.IstheSpeakerAnIdiot, this);
this.id10t = true;
}
Speaker.prototype.IstheSpeakerAnIdiot = function() {
return this.id10t;
};
return Speaker;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment