This commit is contained in:
David Bruant 2024-06-15 16:32:53 +02:00
parent f27349dcf9
commit e7be870938

View File

@ -10,9 +10,9 @@
/** @type {File} */
$: file = files && files[0]
$: console.log('file', file)
$: tableRawContent = file && getTableRawContentFromFile(file)
$: tableObjectSheets = tableRawContent && tableRawContent.then(tableRawContentToObjects) || []
$: Promise.resolve(tableObjectSheets).then(x => console.log('tableObjectSheets', x))
</script>