Skip to content

Commit

Permalink
docs: fix copypasta in README
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Mar 16, 2024
1 parent f2b7d75 commit 7826245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ofxString = readFile("bank-statement.ofx");
parseOFX(ofxString).then(ofxData => {
const statementResponse = ofxData.OFX.BANKMSGSRSV1.STMTTRNRS.STMTRS;
const accountId = statementResponse.BANKACCTFROM.ACCTID;
const currencyCode = currencyCode = statementResponse.CURDEF;
const currencyCode = statementResponse.CURDEF;
const transactionStatement = statementResponse.BANKTRANLIST.STMTTRN;
// do something...
});
Expand Down

0 comments on commit 7826245

Please sign in to comment.