UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

6 lines 237 B
import { defer } from './defer'; import { EMPTY } from './empty'; export function iif(condition, trueResult = EMPTY, falseResult = EMPTY) { return defer(() => condition() ? trueResult : falseResult); } //# sourceMappingURL=iif.js.map