UNPKG

tdl-client-nodejs

Version:

A NodeJs client that allows users to get up to speed with the TDL system.

17 lines (13 loc) 251 B
"use strict"; function ValidResponse(id, result) { this.id = id; this.result = result; } ValidResponse.prototype.asHash = function() { return { result: this.result, error: null, id: this.id }; }; module.exports = ValidResponse;