Methods
isMap(value) → {Boolean}
Returns if a value is a map.
Parameters:
Name | Type | Description |
---|---|---|
value |
* | the value to check |
- Source:
- See:
Returns:
true if value is a map
- Type
- Boolean
Example
if( isMap(val) ){
return val.get('foobar');
}