Creates a function to test the type of a given value.
This higher-order function generates a type-checking function for the specified type.
The type to check for.
// Creates a function to check if a value is a stringconst isString = typeOfTest("string"); Copy
// Creates a function to check if a value is a stringconst isString = typeOfTest("string");
// Returns trueisString("hello"); Copy
// Returns trueisString("hello");
// Returns falseisString(123); Copy
// Returns falseisString(123);
Generated using TypeDoc
Creates a function to test the type of a given value.
This higher-order function generates a type-checking function for the specified type.