UNPKG

@devlander/utils

Version:

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

9 lines (8 loc) 281 B
import { AnyObject } from "../types/value.types"; /** * Checks if a value is a plain object. * * @param value - The value to check. * @returns `true` if the value is a plain object, `false` otherwise. */ export declare const isPlainObject: (value: any) => value is AnyObject;