@dxtmisha/functional-basic
Version:
Core functional utility library for modern web development without framework dependencies
8 lines (7 loc) • 376 B
TypeScript
/**
* Checks if the value is an object or not an array.
*
* Проверяет, является ли значение объектом и не является массивом.
* @param value input value/ входное значение
*/
export declare function isObjectNotArray<T>(value: T): value is Exclude<Extract<T, Record<any, any>>, any[] | undefined | null>;