Page MenuHomeSealhub

response.js
No OneTemporary

response.js

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.status_message
};
}
module.exports = Response;

File Metadata

Mime Type
text/plain
Expires
Fri, Jan 24, 01:35 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
601534
Default Alt Text
response.js (431 B)

Event Timeline