getfunctionname
v0.3.2
Published
Get the name of a function
Readme
getfunctionname
Get the readable name of a function.
Installation
$ npm install getfunctionnameUsage
var getFunctionName = require('getfunctionname');
getFunctionName(function someFunction () { }); // 'someFunction'
getFunctionName(function ANOTHER_FUNCTION () { }); // 'ANOTHER_FUNCTION'
getFunctionName(() => { }); // 'anonymous'
getFunctionName(function () { }); // 'anonymous'