send()

in lib/index.js [56:62]


    send(status, body, headers) {
        if (!status) return this.callback(null,this.request);
        const res = {status};
        if (body) res.body = body;
        if (headers) res.headers = headers;
        return this.callback(null,res);
    }