12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
/* eslint-disable no-console, no-unused-vars */
|
|
import nlp from '../../../src/three.js'
|
|
import plugin from './src/plugin.js'
|
|
nlp.extend(plugin)
|
|
|
|
|
|
let txt = '! i walk !ohyeah gh'
|
|
const doc = nlp(txt)
|
|
doc.searchBangs()
|
|
doc.debug()
|
|
|