If the function is memoized, contains the current function calls' cached results.
Returns the name of a function.
Must call Format.Config.addUtilsToPrototype to be defined.
The name of a function or "" for lambda functions.
Returns the rightmost accessor's name of the function's first returned variable.
For example a return expression like return this.field; will yield "field" as a value.
Must call Format.Config.addUtilsToPrototype to be defined.
The text of the last literal contained in the first return expression of the function.
Returns a memoized function wrapper of the function. All calls with the same arguments to the original function are cached after the first use.
Must call Format.Config.addUtilsToPrototype to be defined.
A cache key resolver function used to store the call arguments' list as a string key. Defaults to JSON.stringify.
An array containing the call arguments for the function.
Generated using TypeDoc
Extends the built-in javascript
Functionobject's prototype.The Format.Config.addUtilsToPrototype method must be called in order to access the definitions.