gl-store-s3.js/node_modules/aws-sdk/lib/publisher/string-to-buffer.js

14 lines
351 B
JavaScript

/**
* Converts a UTF8 string into a Buffer.
* @param {string} data Some string to convert to a Buffer
* @returns {Buffer}
*/
function stringToBuffer(data) {
return (typeof Buffer.from === 'function' && Buffer.from !== Uint8Array.from) ?
Buffer.from(data) : new Buffer(data);
}
module.exports = {
stringToBuffer: stringToBuffer
};