We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5aa0a commit 9b3b47dCopy full SHA for 9b3b47d
src/dynamo/expression/functions/alias-for-operator.function.ts
@@ -10,6 +10,6 @@ import { ConditionOperator } from '../type/condition-operator.type'
10
*/
11
export function aliasForOperator(operator: ConditionOperator): OperatorAlias {
12
return Array.isArray(OPERATOR_TO_ALIAS_MAP[operator])
13
- ? <OperatorAlias>OPERATOR_TO_ALIAS_MAP[operator][0]
14
- : <OperatorAlias>OPERATOR_TO_ALIAS_MAP[operator]
+ ? OPERATOR_TO_ALIAS_MAP[operator][0]
+ : OPERATOR_TO_ALIAS_MAP[operator]
15
}
0 commit comments