UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

6 lines (5 loc) 210 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ifThenElse = void 0; const ifThenElse = (condition, then, els) => (condition ? then : els); exports.ifThenElse = ifThenElse;