@xiaohuohumax/lrc-parser
v1.0.1
Published
LRC歌词文件解析器
Downloads
3
Readme
@xiaohuohumax/lrc-parser
LRC歌词文件解析器
Install
npm i @xiaohuohumax/lrc-parser
Use
import lrcSource from './***.lrc?raw';
import { LrcParser, Lrc } from '@xiaohuohumax/lrc-parser';
const lrcParser = new LrcParser();
const lrc: Lrc = lrcParser.parser(lrcSource);
console.log(JSON.stringify(lrc, undefined, 2));