UNPKG

@splitsoftware/splitio-commons

Version:
9 lines (8 loc) 193 B
/** * Returns the name of a given function. */ export function getFnName(fn) { if (fn.name) return fn.name; return (fn.toString().match(/function (.+?)\(/) || ['', ''])[1]; }