UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

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