correction readme

This commit is contained in:
David Bruant 2024-06-16 14:58:03 +02:00
parent 52681a088e
commit 0271b68452

View File

@ -24,7 +24,7 @@ import {getTableRawContentFromFile, tableRawContentToObjects} from './main.js'
* @return {Promise<any[]>}
*/
async function getFileData(file){
return getTableRawContentFromFile(file)then(tableRawContentToObjects)
return getTableRawContentFromFile(file).then(tableRawContentToObjects)
}
```