reviews-analysis
Version:
Analyse public vehicle reviews via ML (Aylien) and save the data into a Document Store (Mongo). Supports Classifications and Document and Aspect level Sentiment Analysis.
14 lines (12 loc) • 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
};