import getTypeOf from "../getTypeOf"; export function isObject(v: any): v is Record { return getTypeOf(v) === "object"; }