UNPKG

233 BJavaScriptView Raw
1import { defer } from './defer';
2import { empty } from './empty';
3export function _if(fn, thenSource, elseSource = empty()) {
4 return defer(async () => ((await fn()) ? thenSource : elseSource));
5}
6
7//# sourceMappingURL=if.mjs.map