diff options
Diffstat (limited to 'webcards/scripts/socket/message.js')
-rw-r--r-- | webcards/scripts/socket/message.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/webcards/scripts/socket/message.js b/webcards/scripts/socket/message.js new file mode 100644 index 0000000..5e821c4 --- /dev/null +++ b/webcards/scripts/socket/message.js @@ -0,0 +1,14 @@ +function Message(type, data){ + this.t = type; + this.d = data; +} + +Message.prototype = { + stringify: function(){ + var dat = this.d + if(typeof dat !== "string"){ + dat = JSON.stringify(dat); + } + return JSON.stringify({type: this.t, data: dat}); + } +}; |