UNPKG

@devlander/utils

Version:

Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.

8 lines (7 loc) 262 B
/** * Checks if the given value is an object. * * @param {unknown} thing - The value to check. * @returns {boolean} - Returns `true` if the value is an object and not `null`, otherwise `false`. */ export declare const isObject: (thing: unknown) => boolean;