UNPKG

@oroinc/autobahnjs

Version:

AutobahnJS is a JavaScript client library that implements The WebSocket Application Messaging Protocol (WAMP)

12 lines (9 loc) 178 B
function Test(msg) { var self = this; this._msg = msg; } Test.prototype.hello = function (name) { console.log(name); console.log(this._msg); } module.exports = Test;