Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
variable usePreferProp
import { usePreferProp } from "https://deno.land/x/react_querybuilder@v8.0.0/packages/react-querybuilder/src/hooks/usePreferProp.ts";

For given default, prop, and context values, return the first provided of prop, context, and default, in that order.

type

(
def: boolean,
prop?: boolean,
context?: boolean,
) => boolean