2015-10-08 14:15:20 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2015-10-08 14:15:20 -07:00
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-05-11 12:43:49 -07:00
|
|
|
*
|
|
|
|
* @format
|
2015-10-08 14:15:20 -07:00
|
|
|
*/
|
2018-05-11 12:43:49 -07:00
|
|
|
|
2015-10-08 14:15:20 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = function(req, res, next) {
|
|
|
|
req.rawBody = '';
|
|
|
|
req.setEncoding('utf8');
|
|
|
|
|
|
|
|
req.on('data', function(chunk) {
|
|
|
|
req.rawBody += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('end', function() {
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
};
|