lyrebird-transcription-correcter
v0.1.0
Published
How to install ?
Downloads
5
Readme
Lyrebird transcription corrector
How to install ?
npm install lyrebird-transcription-correcter
How to use is?
var { GetLcs } = require('lyrebird-transcription-correcter');
var res = GetLcs('a b c d e f', 'a b x y e f g');
//[ 'a', 'b', [ [ 'c', 'd' ], [ 'x', 'y' ] ], 'e', 'f', [ [], [ 'g' ] ] ]
console.log(res)