Skip to main content
Module

x/hkts/fns.ts>isRecord

Functional programming tools: option, either, task, state, optics, etc.
Latest
variable isRecord
import { isRecord } from "https://deno.land/x/hkts@v0.0.52/fns.ts";

isRecord

Takes a value and returns false if the value is a Record. Also acts as a type guard.


type

(a: unknown) => a is Record<string | number | symbol, unknown>