UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

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