Function

Creates a new function.

Members

apply :any

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

bind :any

For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters.

call :any

Calls a method of an object, substituting another object for the current object.

once :function

Run function once

Example
(()=> console.log).once('hello'); // run console.log('hello') once

toString :string

Returns a string representation of a function.