Auto-commit 2026-04-29 16:31
This commit is contained in:
13
node_modules/twilio/lib/http/response.js
generated
vendored
Normal file
13
node_modules/twilio/lib/http/response.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class Response {
|
||||
constructor(statusCode, body, headers) {
|
||||
this.statusCode = statusCode;
|
||||
this.body = body;
|
||||
this.headers = headers;
|
||||
}
|
||||
toString() {
|
||||
return "HTTP " + this.statusCode + " " + this.body;
|
||||
}
|
||||
}
|
||||
exports.default = Response;
|
||||
Reference in New Issue
Block a user