0.3.2 • Published 10 years ago
getfunctionname
Licence
MIT
Version
0.3.2
Deps
0
Vulns
0
Weekly
0
getfunctionname
Get the readable name of a function.
Installation
$ npm install getfunctionname
Usage
var getFunctionName = require('getfunctionname');
getFunctionName(function someFunction () { }); // 'someFunction'
getFunctionName(function ANOTHER_FUNCTION () { }); // 'ANOTHER_FUNCTION'
getFunctionName(() => { }); // 'anonymous'
getFunctionName(function () { }); // 'anonymous'