UNPKG

@m92/express-utils

Version:

Utility Module for Express Framework

14 lines (11 loc) 284 B
'use strict' import http from 'http' export default class ResponseBody { constructor (statusCode, message, data, error) { this.statusCode = statusCode this.status = http.STATUS_CODES[statusCode] this.message = message this.data = data this.error = error } }