UNPKG

spacy

Version:

JavaScript API for spaCy with Python REST API

11 lines (9 loc) 259 B
import { Doc } from '../tokens'; import { words, spaces, attrs } from '../../tests/util'; export default class Language { constructor(model, api) { return async function(text) { return new Doc(words, spaces, attrs); } } }