import { TAnyObject } from '../typings/object'; export default function isObject(input: Obj | unknown): input is Obj { return typeof input === 'object'; }