Page MenuHomeSealhub

response.js
No OneTemporary

response.js

"use strict";
"use strict";
function Response(data, is_error, type, status_message) {
this.status = is_error ? "error" : "success";
this.type = type || "response";
this.status_message = status_message || "ok";
this.data = data || {};
}
Response.fromError = function(sealious_error) {
return {
data: sealious_error.data || {},
is_error: true,
type: sealious_error.type,
status_message: sealious_error.message,
message: sealious_error.message,
};
};
module.exports = Response;

File Metadata

Mime Type
text/plain
Expires
Mon, Dec 23, 03:42 (17 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556805
Default Alt Text
response.js (494 B)

Event Timeline