(str: string)
| 42 | } |
| 43 | |
| 44 | export const transformBoolStr = (str: string) => { |
| 45 | return str !== 'false' |
| 46 | } |
| 47 | |
| 48 | export const getRuntimeJsValue = (value: JSExpression | JSFunction, context: IDataSourceRuntimeContext) => { |
| 49 | if (!['JSExpression', 'JSFunction'].includes(value.type)) { |
no outgoing calls
no test coverage detected