summaryrefslogtreecommitdiff
path: root/scripts/client/message.js
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2020-02-27 18:06:56 -0500
committerKyle Gunger <corechg@gmail.com>2020-02-27 18:06:56 -0500
commit87ce9d1c162ac9606a9b4d817a5f3b486889a46f (patch)
treee8454d0e3fc484c67aad08ecce2aa623640ce777 /scripts/client/message.js
parent9e053ea489f163e0e365778d20b7d0386be1d575 (diff)
Initialize Client repo with predone work
Diffstat (limited to 'scripts/client/message.js')
-rw-r--r--scripts/client/message.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/client/message.js b/scripts/client/message.js
new file mode 100644
index 0000000..5e821c4
--- /dev/null
+++ b/scripts/client/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});
+ }
+};