Function typeOfTest

  • Creates a function to test the type of a given value.

    This higher-order function generates a type-checking function for the specified type.

    Parameters

    • type: TypeToTest

      The type to check for.

    Returns ((thing) => boolean)

    • Returns a function that checks if a value is of the specified type.
      • (thing): boolean
      • Parameters

        • thing: any

        Returns boolean

    Example

    // Creates a function to check if a value is a string
    const isString = typeOfTest("string");

    Example

    // Returns true
    isString("hello");

    Example

    // Returns false
    isString(123);

Generated using TypeDoc