mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
17 lines
492 B
TypeScript
17 lines
492 B
TypeScript
|
// Loaded from https://deno.land/x/validasaur/src/rules/required_if.ts
|
||
|
|
||
|
|
||
|
import type { Validity, Rule } from "../types.ts";
|
||
|
import { required } from "./required.ts";
|
||
|
import { optionallyValid } from "../utils.ts";
|
||
|
|
||
|
export function requiredIf(field: string, fieldValue: any): Rule {
|
||
|
return function requiredIfRule(value: any, { getValue }): Validity {
|
||
|
const val = getValue(field);
|
||
|
if (val === fieldValue) {
|
||
|
return required(value);
|
||
|
}
|
||
|
return optionallyValid(true);
|
||
|
};
|
||
|
}
|