correction nom

This commit is contained in:
David Bruant 2024-06-16 13:58:12 +02:00
parent 1e67672d68
commit dfa249599d

View File

@ -241,7 +241,7 @@ function rawContentToObjects(rawContent){
* @param {Map<SheetName, SheetRawContent>} rawContentSheets
* @returns {Map<SheetName, any[]>}
*/
export function sheetRawContentToObjects(rawContentSheets){
export function tableRawContentToObjects(rawContentSheets){
return new Map(
[...rawContentSheets].map(([sheetName, rawContent]) => {
return [sheetName, rawContentToObjects(rawContent)]