Skip to content

okdargy/dotbrk

Repository files navigation

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)
})