Get the name of a function.
npm install name-of-functionsh
npm install name-of-function
`
Usage
`js
const getFunctionName = require("name-of-function")
getFunctionName(getFunctionName) // "getFunctionName"
getFunctionName(function e() {}) // "e"
``