Skip to main content
Module

x/is_what/dist/index.d.ts>isType

JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.
Go to Latest
function isType
import { isType } from "https://deno.land/x/is_what@v4.1.15/dist/index.d.ts";

Does a generic check to check that the given payload is of a given type. In cases like Number, it will return true for NaN as NaN is a Number (thanks javascript!); It will, however, differentiate between object and null

Parameters

payload: any
type: T

Returns

payload is T