Skip to content

Instantly share code, notes, and snippets.

@ben-bradley
Created May 15, 2014 04:14
Show Gist options
  • Save ben-bradley/9baae21e84466a859870 to your computer and use it in GitHub Desktop.
Save ben-bradley/9baae21e84466a859870 to your computer and use it in GitHub Desktop.
ws sendJson sugar
ws.prototype.sendJson = function(data, options, callback) {
this.send.call(this, JSON.stringify(data), options, callback);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment