_functionName.js 207 B

12345
  1. export default function _functionName(f) {
  2. // String(x => x) evaluates to "x => x", so the pattern may not match.
  3. var match = String(f).match(/^function (\w*)/);
  4. return match == null ? '' : match[1];
  5. }