@luolapeikko/ts-common
    Preparing search index...

    Function isNotRecord

    • Type guard that checks if a value is not a record (i.e., not an object with property keys).

      Type Parameters

      • T

        The type of the value to check.

      Parameters

      • value: T

        The value to test.

      Returns value is Exclude<T, Record<PropertyKey, unknown>>

      true if the value is not a record; otherwise, false.

      Use RecordCore.isNot instead

      v0.4.6