tfk-saksbehandling-soknad-to-xslx
v2.0.3
Published
Create xlsx from jsonfiles
Downloads
4
Readme
tfk-saksbehandling-soknad-to-xslx
Parses all .json-files in a directory and creates an .xlsx-file.
Systems supported
- tilskudd
Usage
'use strict'
const reportGenerator = require('tfk-saksbehandling-soknad-to-xslx')
const options = {
dataPath: 'test/data',
reportPath: 'test/data/report.xlsx'
}
reportGenerator(options, (error, message) => {
if (error) {
console.error(error)
} else {
console.log(message)
}
})