1.0.8 • Published 5 months ago

bai2-parser v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

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

KeyDefaultDescription
output'JSON' | 'CSV'You can use this option to customize the output.

📄 License

MIT

1.0.8

5 months ago

1.0.7

5 months ago

1.0.6

5 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago