Repository URL to install this package:
|
Version:
1.0.0-1 ▾
|
vending-octopus-service-dep
/
usr
/
local
/
lib
/
vending
/
octopus
/
service
/
node_modules
/
fn-name
/
index.js
|
|---|
'use strict';
module.exports = fn => {
if (typeof fn !== 'function') {
throw new TypeError('Expected a function');
}
return fn.displayName || fn.name || (/function ([^(]+)?\(/.exec(fn.toString()) || [])[1];
};