As Is | NONE
Syntax
NONE( [input] )
Parameters
input
Any data may be used as the input.
Return Value
The input is returned unchanged and unmodified. No operation occurs. This is equivalent to VALUE.Description
Any value passed into this function will be returned unmodified. This method is a no-op and should be the selected transformation when the data should be passed through as-is.Examples
NONE("test") # returns "test"
NONE(1) # returns 1
NONE(["test"]) # returns ["test"]
# input = {"test": 1}
NONE(${input}) # returns {"test": 1}