Always determine that input matches, regardless of its actual type.
Type Declaration
(_input:unknown,..._args:any[]):_inputisany
This function is used to create a type guard that always returns true, effectively allowing
the input to be treated as the specified type without any runtime checks.
Parameters
_input: unknown
..._args: any[]
Returns _inputisany
Example
assume<string>(42); // true (no runtime check is performed)
Always determine that
inputmatches, regardless of its actual type.