UNPKG
@midlandsbank/node-nacha
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.1.0
1.0.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.0
NACHA ACH EFT File Parser/Formatter for CCD+ / PPD+ / CTX+
@midlandsbank/node-nacha
/
lib
/
api
/
getAccountTypeCode.js
5 lines
(4 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
const
accountTypeDictionary =
require
(
'../accountTypeDictionary'
)
module
.
exports
=
function
getAccountTypeCode
(
accountType
) {
return
accountTypeDictionary[accountType] ||
'2'
;
// Default to Checking ('2')
}