JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q41084F
  • License ISC

Parse FedACH Directory File Format

Package Exports

  • fedach

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fedach) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

fedach Build Status

Parse FedACH Directory File Format for Node.js

Install

npm install fedach

Usage

const fedach = require('fedach')

fedach.download((err, data) => {
  if (err) return console.error(err)
  const results = fedach.parse(data)
  console.log(results[0]);
})
{
  routing: '011000015',
  office: 'O',
  frb: '011000015',
  type: '0',
  date: '020802',
  newRouting: '000000000',
  customer: 'FEDERAL RESERVE BANK',
  address: '1000 PEACHTREE ST N.E.',
  city: 'ATLANTA',
  state: 'GA',
  zip: '30309',
  zipExt: '4470',
  zipFull: '30309-4470',
  phoneArea: '866',
  phonePrefix: '234',
  phoneSuffix: '5681',
  phoneFull: '8662345681',
  status: '1',
  dataView: '1',
  filter: '     '
}