UNPKG

@keycloakify/keycloak-account-ui

Version:
12 lines 511 B
// Simplified version of https://github.com/react-hook-form/react-hook-form/blob/ea0f3ed86457691f79987a703ae8d50b9e16e2ad/src/logic/getRuleValue.ts#L10-L21 // TODO: Can be removed if https://github.com/react-hook-form/react-hook-form/issues/12178 is resolved export function getRuleValue(rule) { if (typeof rule === "undefined" || rule instanceof RegExp) { return; } if (typeof rule === "object") { return rule.value; } return rule; } //# sourceMappingURL=getRuleValue.js.map