Created
December 9, 2013 04:26
-
-
Save Azerothian/7867390 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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