UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

6 lines (4 loc) 178 B
import { TAnyObject } from '../typings/object'; export default function isObject<Obj = TAnyObject>(input: Obj | unknown): input is Obj { return typeof input === 'object'; }