Skip to content

Instantly share code, notes, and snippets.

View kanayannet's full-sized avatar

kanayannet kanayannet

View GitHub Profile
Function.prototype.method = function(name, func)
{
this.prototype[name] = func;
return this;
};
String.method('deentityify',function()