@webdeveric/utils
    Preparing search index...

    Variable isAnyConst

    isAny: (_input: unknown, ..._args: any[]) => _input is any = ...

    Always determine that input matches, regardless of its actual type.

    Type Declaration

      • (_input: unknown, ..._args: any[]): _input is any
      • 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 _input is any

        assume<string>(42); // true (no runtime check is performed)
        
    isAny(42); // true
    isAny('hello'); // true