From dfa249599d12548acf3c0c945fd0e98706cec11b Mon Sep 17 00:00:00 2001 From: David Bruant Date: Sun, 16 Jun 2024 13:58:12 +0200 Subject: [PATCH] correction nom --- scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/main.js b/scripts/main.js index d0f5338..3644ea8 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -241,7 +241,7 @@ function rawContentToObjects(rawContent){ * @param {Map} rawContentSheets * @returns {Map} */ -export function sheetRawContentToObjects(rawContentSheets){ +export function tableRawContentToObjects(rawContentSheets){ return new Map( [...rawContentSheets].map(([sheetName, rawContent]) => { return [sheetName, rawContentToObjects(rawContent)]