UNPKG

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.

16 lines (12 loc) 226 B
'use strict' function range(from, to) { // TODO: make this inlined. const list = new Array(to - from + 1) for(let i = 0; i < list.length; ++i) { list[i] = from + i } return list } module.exports = { range }