UNPKG

to-ynab

Version:

Convert csv files from different sources, like banks to YNAB ( youneedabudget.com ) ready csv files

20 lines (17 loc) 379 B
"use strict"; const sources = { nordea: { headers: ['Bogført', 'Tekst', 'Rentedato', 'Beløb', 'Saldo'], map: { date: 0, payee: null, category: null, memo: 1, outflow: 3, inflow: 3 }, dateformat: 'DD-MM-YYYY', delimitor: ';' } }; module.exports = sources;