This module provides a collection of utility functions for type checking and validation.
The functions in this module can be accessed using the syntax ix.api.is.functionName();
ix.api.is.functionName();
// Returns: trueix.api.is.isDate(new Date());// Returns: falseix.api.is.isDate("2022-01-01"); Copy
// Returns: trueix.api.is.isDate(new Date());// Returns: falseix.api.is.isDate("2022-01-01");
This module provides a collection of utility functions for type checking and validation.
Usage
The functions in this module can be accessed using the syntax
ix.api.is.functionName();
Example