UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

React spreadsheet import for xlsx and csv files with column matching and validation steps

15 lines (13 loc) 326 B
const booleanWhitelist = { yes: true, no: false, true: true, false: false, }; const normalizeCheckboxValue = (value) => { if (value && value.toLowerCase() in booleanWhitelist) { return booleanWhitelist[value.toLowerCase()]; } return false; }; export { normalizeCheckboxValue };