Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/libpkgx/src/deps.ts>is_what.isObjectLike

`import`… but with pkging powers
Very Popular
Latest
function is_what.isObjectLike
import { is_what } from "https://deno.land/x/libpkgx@v0.18.1/src/deps.ts";
const { isObjectLike } = is_what;

Returns whether the payload is an object like a type passed in < >

Usage: isObjectLike<{id: any}>(payload) // will make sure it's an object and has an id prop.

Type Parameters

T extends PlainObject

this must be passed in < >

Parameters

payload: any

Returns

payload is T