Namespace JSUTILS
Namespace and utility functions
Defined in: JSUTILS.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
| Method Attributes | Method Name and Description |
|---|---|
| <static> |
JSUTILS.inherit(p)
Use this method rather than Object.create() directly if
browser compatibility is unknown.
|
| <static> |
JSUTILS.namespace(namespaceString)
Use this function to safely create a new namespace
if a namespace already exists, it won't be recreated.
|
Method Detail
<static>
JSUTILS.inherit(p)
Use this method rather than Object.create() directly if
browser compatibility is unknown.
- Parameters:
- {Object} p
- The prototype of the object to inherit.
<static>
JSUTILS.namespace(namespaceString)
Use this function to safely create a new namespace
if a namespace already exists, it won't be recreated.
- Parameters:
- {String} namespaceString
- The namespace as a string.
