solc
Version:
Solidity compiler
13 lines (12 loc) • 296 B
TypeScript
/**
* Returns true if and only if the value is null or undefined.
*
* @param value
*/
export declare function isNil(value: any): boolean;
/**
* Returns true if and only if the value is an object and not an array.
*
* @param value
*/
export declare function isObject(value: any): boolean;