UNPKG

form-payload

Version:
14 lines (11 loc) 320 B
const UNCHECKED_RADIO_CONTROL_ELEMENT_VALUE = /** @type {const} */ (''); /** * @param {HTMLInputElement} element * @returns {string} */ const getRadioControlElementValue = (element) => { return element.checked ? element.value : UNCHECKED_RADIO_CONTROL_ELEMENT_VALUE; }; export { getRadioControlElementValue };