UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

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