Function Namespace kocujILV12aCHelper
kocujILV12aCHelper
Defined in: helper.js.
Constructor Attributes | Constructor Name and Description |
---|---|
Helper prototype constructor
|
Method Attributes | Method Name and Description |
---|---|
initAny(value)
Initialize any value
|
|
initBoolean(value)
Initialize boolean value
|
|
initFunction(value)
Initialize function value
|
|
initNumeric(value)
Initialize numeric integer value
|
|
initNumericFloat(value)
Initialize numeric float value
|
|
initObject(value)
Initialize object value
|
|
initString(value)
Initialize string value
|
Method Detail
{anything}
initAny(value)
Initialize any value
- Parameters:
- {anything} value
- Value to initialize
- Returns:
- {anything} Initialized value or empty string if there was an error
{boolean}
initBoolean(value)
Initialize boolean value
- Parameters:
- {(boolean|number|string)} value
- Value to initialize; 1 means true and 0 means false
- Returns:
- {boolean} Initialized value or empty string if there was an error
{(boolean|function)}
initFunction(value)
Initialize function value
- Parameters:
- {function} value
- Value to initialize
- Returns:
- {(boolean|function)} Initialized value or false if there was an error
{(number|string)}
initNumeric(value)
Initialize numeric integer value
- Parameters:
- {(number|string)} value
- Value to initialize
- Returns:
- {(number|string)} Initialized value or empty string if there was an error
{(number|string)}
initNumericFloat(value)
Initialize numeric float value
- Parameters:
- {(number|string)} value
- Value to initialize
- Returns:
- {(number|string)} Initialized value or empty string if there was an error
{Object}
initObject(value)
Initialize object value
- Parameters:
- {Object} value
- Value to initialize
- Returns:
- {Object} Initialized value or empty string if there was an error
{string}
initString(value)
Initialize string value
- Parameters:
- {string} value
- Value to initialize
- Returns:
- {string} Initialized value or empty string if there was an error