Skip to content

Instantly share code, notes, and snippets.

@leopku
Created December 24, 2017 03:50
Show Gist options
  • Save leopku/9c05ff9e484c9c4a158d8721c8601bbb to your computer and use it in GitHub Desktop.
Save leopku/9c05ff9e484c9c4a158d8721c8601bbb to your computer and use it in GitHub Desktop.
module.exports = {
*beforeSendResponse(req, res) {
let { response } = res;
const { body } = response;
let document = body.toString();
response.body = new Buffer(document);
return { response };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment