(to use it, copy and paste from 📁 module file: typeName())
// ⭐️ content of function definition (string)functionfunctionDefinition(value) {// ---------------------------------------------------------------------// ⭐️ will throw a TypeError if value is not a function:// ⛔ TypeError: // Function.prototype.toString requires that 'this' be a Function// ---------------------------------------------------------------------returnFunction.prototype.toString.call(value);}