The type of the value to be evaluated.
The type of the optional arguments to be passed to the value if it is a function.
The value to be evaluated. It can be a function or a value.
Rest
...arguments_: A[]Optional arguments to be passed to the value if it is a function.
The result of evaluating the value.
value('foo') // 'foo'
value(() => 'foo') // 'foo'
Generated using TypeDoc
Evaluates the given value with optional arguments and returns the result.