mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 06:09:11 +08:00
37 lines
715 B
JavaScript
37 lines
715 B
JavaScript
'use strict';
|
|
|
|
/*
|
|
* Trivial convenience methods for parsing Buffers
|
|
*/
|
|
|
|
function asBuffer(body, options) {
|
|
|
|
var ret;
|
|
if (Buffer.isBuffer(body)) {
|
|
ret = body;
|
|
} else if (typeof body === 'object') {
|
|
ret = new Buffer(JSON.stringify(body), options.reqBodyEncoding);
|
|
} else if (typeof body === 'string') {
|
|
ret = new Buffer(body, options.reqBodyEncodeing);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
function asBufferOrString(body) {
|
|
|
|
var ret;
|
|
if (Buffer.isBuffer(body)) {
|
|
ret = body;
|
|
} else if (typeof body === 'object') {
|
|
ret = JSON.stringify(body);
|
|
} else if (typeof body === 'string') {
|
|
ret = body;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
module.exports = {
|
|
buffer: asBuffer,
|
|
bufferOrString: asBufferOrString
|
|
};
|