micro/packages/common/src/helpers/is-object.helper.ts

4 lines
115 B
TypeScript

export function isObject(input: unknown): input is Record<string, unknown> {
return typeof input === "object";
}