// Determine if the toggle button value matches, or is contained in, the// candidate group value.exportdefaultfunctionisValueSelected(value,candidate){if(candidate===undefined||value===undefined){returnfalse;}if(Array.isArray(candidate)){returncandidate.includes(value);}returnvalue===candidate;}