bai2-parser
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

BAI2 Parser

BAI2 Parser is for parsing the bai(Bank Administration Institute) files and convert into the CSV or JSON file. Check out our documentation below to learn how to get started

Contents

🚀 Installation

  1. Install bai2-parser:
npm install bai2-parser
yarn add bai2-parser

🎉 Usage

Here is a basic example of how to use bai2 parser. By using this, you can read the input directly from file or pass the string.

  • Example with pass the string
import fs from 'fs'
import { BAI2 } from 'bai2-parser'

const fileString = fs.readFileSync(`./sample.bai`).toString()

// You can get the parsed answer from file string using below prop.

const parsefromString = BAI2.fromString(fileString, { output:'JSON' })

console.log('parsefromString', parsefromString)
  • Example with pass the file directly
import { BAI2 } from 'bai2-parser'

// You can get the parsed answer from file using below prop.

const parsefromFile = BAI2.fromFile(`./sample.bai`, { output:'CSV' })

console.log('parsefromFile', parsefromFile)

📖 Methods

BAI2.fromString(fileString, options) => string | object | Error

Returns the JSON or CSV string or rejects with an Error if there was an issue.

  • fileString - An fileString of BAI2 file to be converted to JSON or CSV.
  • options - (Optional) A BAI2 file specifying any of the following key value pairs:

BAI2.fromFile(filePath, options) => string | object | Error

Returns the JSON or CSV string or rejects with an Error if there was an issue.

  • filePath - An filePath of BAI2 file to be converted to JSON or CSV.
  • options - (Optional) A BAI2 file specifying any of the following key value pairs:

Options

Key Default Description
output 'JSON' | 'CSV' You can use this option to customize the output.

📄 License

MIT

Package Sidebar

Install

npm i bai2-parser

Weekly Downloads

4

Version

1.0.8

License

MIT

Unpacked Size

97.9 kB

Total Files

8

Last publish

Collaborators

  • mitrahsoft