UNPKG

twilio

Version:
13 lines (9 loc) 243 B
'use strict'; var Response = function(statusCode, body) { this.statusCode = statusCode; this.body = body; }; Response.prototype.toString = function() { return 'HTTP ' + this.statusCode + ' ' + this.body; }; module.exports = Response;