Function Namespace wef
Defined in: wef.core.js.
Constructor Attributes | Constructor Name and Description |
---|---|
wef()
|
Field Attributes | Field Name and Description |
---|---|
<static> |
wef.fn
Extension point
|
Version number
|
Method Attributes | Method Name and Description |
---|---|
<static> |
wef.fn.error(message)
Throws an Error
|
<static> |
wef.fn.extend(receiver, giver, filter)
Extends an object with other object properties
|
<static> |
wef.fn.isFunction(obj)
Checks if param is a Function
|
<static> |
wef.fn.isString(obj)
Checks if param is a literal string
|
Field Detail
<static>
wef.fn
Extension point
version
Version number
Method Detail
<static>
wef.fn.error(message)
Throws an Error
- Parameters:
- message
- error message
<static>
wef.fn.extend(receiver, giver, filter)
Extends an object with other object properties
- Parameters:
- {Object} receiver
- receiver object
- {Object} giver
- giver object
- {string[]} filter Optional
- array of strings. If giver property name is contained in filter is added to receiver, else don't
<static>
{boolean}
wef.fn.isFunction(obj)
Checks if param is a Function
- Parameters:
- obj
- object to check
- Returns:
- {boolean} true if a Function, false if not
<static>
{boolean}
wef.fn.isString(obj)
Checks if param is a literal string
- Parameters:
- obj
- object to check
- Returns:
- {boolean} true if a literal string, false if not