Methods
(inner) isEmpty(val) → {boolean}
Returns true if the parameter is empty.
Parameters:
| Name | Type | Description |
|---|---|---|
val |
any |
- Source:
Returns:
- Type
- boolean
Example
var val = '';
isEmpty(val) // true
| Name | Type | Description |
|---|---|---|
val |
any |
var val = '';
isEmpty(val) // true