helpyourneighbour/node_modules/formidable/dist/helpers/readBooleans.cjs

13 lines
337 B
JavaScript
Raw Permalink Normal View History

2026-03-17 07:07:36 +00:00
'use strict';
const readBooleans = (fields, listOfBooleans) => {
// html forms do not send off at all
const fieldsWithBooleans = { ...fields };
listOfBooleans.forEach((key) => {
fieldsWithBooleans[key] = fields[key] === `on` || fields[key] === true;
});
return fieldsWithBooleans;
};
exports.readBooleans = readBooleans;