Skip to content

Instantly share code, notes, and snippets.

@powerdot
Created May 19, 2021 15:34
Show Gist options
  • Save powerdot/2bb02fcde82134716ea474b935b81333 to your computer and use it in GitHub Desktop.
Save powerdot/2bb02fcde82134716ea474b935b81333 to your computer and use it in GitHub Desktop.
let triggers = [ ... ];
let Analysis = require("russian-text-tagger")({triggers, uniq_markers: true});
async function Check(text){
let results = await Analysis(text);
console.log(results);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment