Skip to content

Instantly share code, notes, and snippets.

@Kolesias123
Last active December 30, 2015 22:59
Show Gist options
  • Save Kolesias123/7897452 to your computer and use it in GitHub Desktop.
Save Kolesias123/7897452 to your computer and use it in GitHub Desktop.
String.prototype.asPacket = function()
{
Server.handle.on( this, eval('Packets.' + this) );
};
'Welcome'.asPacket();
// Lo de arriba es lo mismo a poner: Server.handle.on( 'Welcome', Packets.Welcome );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment