Guest User

Untitled

a guest
Nov 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import * as sentiment from 'sentiment'
  2.  
  3. export class Analyzer {
  4. static analyze(phrase) {
  5. let result = sentiment(phrase)
  6. return result['score']
  7. }
  8. };
Add Comment
Please, Sign In to add comment