Georg b3dd3db30b
Adding show_password_box
Signed-off-by: Georg <georg@lysergic.dev>
2021-06-25 07:28:29 +02:00

14 lines
433 B
JavaScript

/** PURE_IMPORTS_START _defer,_empty PURE_IMPORTS_END */
import { defer } from './defer';
import { EMPTY } from './empty';
export function iif(condition, trueResult, falseResult) {
if (trueResult === void 0) {
trueResult = EMPTY;
}
if (falseResult === void 0) {
falseResult = EMPTY;
}
return defer(function () { return condition() ? trueResult : falseResult; });
}
//# sourceMappingURL=iif.js.map