@webdeveric/utils
    Preparing search index...

    Variable isUnknownConst

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

    Always returns true, allowing input to be treated as unknown without any runtime checks.

    Type Declaration

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

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