logo

/Doc|v1.1.1

Module

utilsmodule.jsline 28

Utility functions

EXAMPLES
import {
  isUndefined,
  isNull,
  isExisty
} from './module';

isUndefined();
isNull();
isExisty();

Static Methods

isExisty(param)module.jsline 55

Checks whether the given variable is existing or not.

PARAMETERS
NameTypeDescription

param

*

Target for checking

RETURNS:
{

boolean

} - State

isNull(param)module.jsline 39

Checks whether the given variable is null or not.

PARAMETERS
NameTypeDescription

param

*

Target for checking

RETURNS:
{

boolean

} - State

isUndefined(param)module.jsline 28

Checks whether the given variable is undefined or not.

PARAMETERS
NameTypeDescription

param

*

Target for checking

RETURNS:
{

boolean

} - State
Resizable