ohctechv3/.svn/pristine/dd/dd13d4b4d42e51dc8cf1aa8d21245c80b859ca18.svn-base
2024-10-28 15:03:36 +05:30

17 lines
448 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isValueSelected;
// Determine if the toggle button value matches, or is contained in, the
// candidate group value.
function isValueSelected(value, candidate) {
if (candidate === undefined || value === undefined) {
return false;
}
if (Array.isArray(candidate)) {
return candidate.indexOf(value) >= 0;
}
return value === candidate;
}