UNPKG

mocoolka-function

Version:

Function lib for function.

9 lines (8 loc) 219 B
/** * Gets the name of a function, in a cross-browser way. * * @param {Function} fn function (usually a constructor) * @return {string} */ declare const name: (fn: Function) => string; export default name;