ECMAScript: Function
Modules
es.function.name
, es.function.has-instance
. Just ES5: es.function.bind
.
class Function {
name: string;
bind(thisArg: any, ...args: Array<mixed>): Function;
@@hasInstance(value: any): boolean;
}
CommonJS entry points
core-js/es|stable|actual|full/function
core-js/es|stable|actual|full/function/name
core-js/es|stable|actual|full/function/has-instance
core-js(-pure)/es|stable|actual|full/function/bind
core-js(-pure)/es|stable|actual|full/function/virtual/bind
Examples
(function foo() { /* empty */ }).name; // => 'foo'
console.log.bind(console, 42)(43); // => 42 43