Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 569 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 569 Bytes

Build Status codecov

Logic Parser

Yet another node module! Parses the Logic Pro(*logic) File to extract the basic info.

"The Project is Under Construction!!"

const logicParser = require('logic-parser');

logicParser.parseFile('PATH/TO/THE/PROJECT').then((res) => {
    console.log(res.getTracks());
})