Repository URL to install this package:
|
Version:
2.7.17 ▾
|
import { isSafe } from 'exotic'
/**
* @todo missing story for this
*/
function isValidSelect(args: { value: any; label: string }) {
const { value, label } = args
if (!isSafe(value) || value === label) {
return false
} else {
return true
}
}
export { isValidSelect }