4.0.0 • Published 5 years ago
fn-name v4.0.0
fn-name
Get the name of a named function
There is a name property on functions, but it's not supported in all browsers. This module tries that property then falls back to extracting the name from the function source.
Install
$ npm install fn-nameUsage
import functionName from 'fn-name';
functionName(function foo() {});
//=> 'foo'