Function ensurePlainObject

  • Narrows an unknown value to an object if it is type-compatible and tests positively with isPlainObject, or raises an error otherwise.

    Type Parameters

    • T extends object = object

    Parameters

    • value: unknown

      The value to test.

    • Optionalmessage: string

      The error message to use if value is not type-compatible.

    Returns T

    UnexpectedValueTypeError If the value was undefined.