UNPKG

226 BJavaScriptView Raw
1'use strict';
2
3var response = function(statusCode=200, data={}, headers={}) {
4 return [
5 statusCode, Object.assign({ 'Content-Type': 'application/json' }, headers), JSON.stringify(data)
6 ];
7};
8
9module.exports = response;