Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 282 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 282 Bytes

dotbrk

Parse and export data from the .BRK file extension

Installation

To install the package, use the npm install command:

npm i dotbrk

Example

const { loadFile } = require('dotbrk')

loadFile('./example.brk').then(res => {
    console.log(res)
})