You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this tool!
I was wondering if it should be possible to not provide schema upfront at all and let the consumer apply schema validation. Sometimes, you just want to parse any excel uploaded without having to worry upfront about the schema.
For example:
import{schema,schemaValidator}from"user-preferred-schema-validator";constexcelReader=newExcelReader(readableStream);// <=== no schema passed here
...
awaitexcelReader.eachRow(record=>{schemaValidator.validate(record,schema);// <=== user does this validation upon every record})
what do you think ?
The text was updated successfully, but these errors were encountered:
Thanks for this tool!
I was wondering if it should be possible to not provide schema upfront at all and let the consumer apply schema validation. Sometimes, you just want to parse any excel uploaded without having to worry upfront about the schema.
For example:
what do you think ?
The text was updated successfully, but these errors were encountered: