@draconides/object
Version:
Object manipulation function
24 lines • 494 B
TypeScript
/**
* Check if the given parameter is an object
* @param object - Value to check
* @returns - Return true if the value is an object
* @example
* ```
* // Create an empty object
* const myObject = {};
*
* // Return true
* isObject(myObject);
*
* // Return false
* isObject([]);
*
* // Return false
* isObject(undefined);
* ```
* @version 0.0.4
* @since 0.0.3
*/
declare const isObject: (object: any) => boolean;
export default isObject;
//# sourceMappingURL=isObject.d.ts.map