You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
633 B
Markdown
27 lines
633 B
Markdown
# fn-name [![Build Status](https://travis-ci.org/sindresorhus/fn-name.svg?branch=master)](https://travis-ci.org/sindresorhus/fn-name)
|
|
|
|
> Get the name of a named function
|
|
|
|
There is a non-standard [name](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/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
|
|
|
|
```sh
|
|
$ npm install --save fn-name
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
fnName(function foo() {});
|
|
//=> foo
|
|
```
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|