Returns the given input value without making any changes.
The input value.
const value = 1;const otherValue = noop()(value); // Still 1
The type of the input value.
Generated using TypeDoc
Returns the given input value without making any changes.
Returns
The input value.
Example