-
(static) is(value) → {Boolean}
-
Determines whether the given value is a function.
Parameters:
Name |
Type |
Description |
value |
*
|
|
- Source:
Returns:
-
Type
-
Boolean
-
assign(object) → {this}
-
Assigns properties of the given object directly into the function as static properties.
Parameters:
Name |
Type |
Description |
object |
Object
|
|
- Source:
Returns:
-
Type
-
this
-
bind(that, …args) → {function}
-
Parameters:
Name |
Type |
Attributes |
Description |
that |
Object
|
|
|
args |
*
|
<repeatable>
|
|
- Source:
Throws:
TypeError
Returns:
-
Type
-
function
-
bindArray(that, args) → {function}
-
Parameters:
- Source:
Throws:
TypeError
Returns:
-
Type
-
function
-
bindList()
-
- Deprecated:
- Source:
-
mixin(object) → {this}
-
Assigns properties of the given object into the function's prototype.
Parameters:
Name |
Type |
Description |
object |
Object
|
|
- Source:
Returns:
-
Type
-
this
-
tie(…args) → {function}
-
Similar to bind, but with dynamic `this`
Parameters:
Name |
Type |
Attributes |
Description |
args |
*
|
<repeatable>
|
|
- Source:
Returns:
-
Type
-
function
-
tieArray(args) → {function}
-
Parameters:
Name |
Type |
Description |
args |
Array
|
|
- Source:
Returns:
-
Type
-
function