Socket
Book a DemoInstallSign in
Socket

parse.lrc

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse.lrc

解析.lrc文件歌词

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

simple parse .lrc file lib

install :

npm install parse.lrc

support simple format lrc;

just parse .lrc file ,and return ; a array include timeStamp and lyric line .

work in browser and node .

  var fs = require('fs');
 
 var parseLrc = require('parse.lrc');
 
 var lrcData = fs.readFileSync('somefile.lrc','utf-8');
 
 var lrc = parseLrc(lrcData);
 console.log(lrc);   //output: {lrcInfo:{...},lrcArray{....}}

Keywords

parse

FAQs

Package last updated on 20 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts