You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
714 B
JavaScript
37 lines
714 B
JavaScript
|
5 years ago
|
'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.reqBodyEncoding);
|
||
|
|
}
|
||
|
|
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
|
||
|
|
};
|