Reaches for a function's stringified version by making use of ...
Function.prototype.toString.call(value); Copy
Function.prototype.toString.call(value);
... which helps in passing by some possibly manipulated toString functionality.
toString
Assumes a function type but does not check for it.
Returns a function's stringified implementation.
Reaches for a function's stringified version by making use of ...
... which helps in passing by some possibly manipulated
toStringfunctionality.