Files
2026-07-13 12:48:55 +08:00

12 lines
232 B
JavaScript

import nlp from '../../../src/three.js'
import plg from './src/plugin.js'
nlp.plugin(plg)
const arr = [
"the acting was terrible",
"these pretzels are making me thirsty",
]
const res = nlp(arr[0]).sentiment()
console.log(res)