1.0.2 • Published 4 years ago

mdict-ts v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

mdict-ts

mdict (.mdx, .mdd) file reader rewrite form mdict-js

Note:

Because of TextDecoder API , mdict-ts don't support IE and Edge , but you can use polyfill such as text-encoding.

Installation:

npm i mdict-ts

Usage:

    import {Mdict} from 'mdict-ts'
    const mdict = new Mdict(file: File)
    
    mdict.getWordList(query, offset?): Promise<Array<{ word: string, offset: number }>>
    mdict.getDefinition(offset): Promise<string>