attrpath
Version:
Attribute Path Traverser.
37 lines • 742 B
TypeScript
/**
* Copyright © 2020 2021 2022 7thCode.(http://seventh-code.com/)
* This software is released under the MIT License.
* opensource.org/licenses/mit-license.php
*/
/**
* isNumber
*
* @remarks
* is Number?
*
* @param value - unknown value.
* @returns True/False
*/
export declare function isNumber(value: unknown): boolean;
/**
* isValue
*
* @remarks
* Value is not null or undef
*
* @param value
* @returns not null or undef
*/
export declare function isValue(value: unknown): boolean;
/**
* isObject
*
* @remarks
* is Object or Array.
* [] or {} is True.
*
* @param value - unknown value.
* @returns True/False
*/
export declare function isContainer(value: unknown): boolean;
//# sourceMappingURL=base.d.ts.map