UNPKG
api-helper-kit
Version:
latest (1.2.15)
1.2.15
1.2.14
1.2.13
1.2.12
1.2.11
1.2.10
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.0.3
1.0.2
1.0.1
1.0.0
Rohan api helper kit
github.com/rohansadhukhan65/api-helper-kit
rohansadhukhan65/api-helper-kit
api-helper-kit
/
lib
/
libApiresponseGenerator.js
18 lines
(16 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function createResponse( status =
200
, message =
"Success !"
,
data
=
null
, error =
false
) {
return
{ status: status, message: message, error: error,
data
:
data
, }; } module.exports = { createResponse, };