Namespace geo.util
Defined in: extensions.js.
Constructor Attributes | Constructor Name and Description |
---|---|
The geo.util namespace contains generic JavaScript and JS/Geo utility
functions.
|
Field Attributes | Field Name and Description |
---|---|
<static> |
geo.util.arrayMap
Ensures that Array.prototype.map is available
|
Method Attributes | Method Name and Description |
---|---|
<static> |
geo.util.isArray(object)
Determines whether or not the object is a JavaScript array.
|
<static> |
geo.util.isFunction(object)
Determines whether or not the object is a JavaScript function.
|
<static> |
geo.util.isObjectLiteral(object)
Determines whether or not the object is an object literal (a.k.a.
|
<static> |
geo.util.isUndefined(object)
Determines whether or not the object is `undefined`.
|
Namespace Detail
geo.util
The geo.util namespace contains generic JavaScript and JS/Geo utility
functions.
Field Detail
<static>
{Array}
geo.util.arrayMap
Ensures that Array.prototype.map is available
Method Detail
<static>
geo.util.isArray(object)
Determines whether or not the object is a JavaScript array.
- Parameters:
- {Object} object
- The object to test.
<static>
geo.util.isFunction(object)
Determines whether or not the object is a JavaScript function.
- Parameters:
- {Object} object
- The object to test.
<static>
geo.util.isObjectLiteral(object)
Determines whether or not the object is an object literal (a.k.a. hash).
- Parameters:
- {Object} object
- The object to test.
<static>
geo.util.isUndefined(object)
Determines whether or not the object is `undefined`.
- Parameters:
- {Object} object
- The object to test.