Get the name of a function. Returns undefined if functions don't have names.
npm install name-of-functionconst getFunctionName = require("name-of-function")
getFunctionName(getFunctionName) // "getFunctionName"
getFunctionName(function e() {}) // "e"There are no tests.