PASSTHROUGH()function
PASSTHROUGH(value: T): T
| Param | Type | |
|---|---|---|
value | T | The value to return. required |
| Return | |
|---|---|
T | The exact value it was given, unchanged. |
Function that just passes through the first argument.
Examples
PASSTHROUGH(123) // 123