4.0.0 • Published 3 years ago

fn-name v4.0.0

Weekly downloads
1,493,410
License
MIT
Repository
github
Last release
3 years ago

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-name

Usage

import functionName from 'fn-name';

functionName(function foo() {});
//=> 'foo'