Sign in
chromium
/
devtools
/
devtools-frontend
/
2efbb1b8024a35b4fa4dfc2422d0b97582c96fc0
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_functionName.js
blob: 55ac1cd84d9d7df96dcd6dd4dc018c508e981497 [
file
]
function
_functionName
(
f
)
{
// String(x => x) evaluates to "x => x", so the pattern may not match.
var
match
=
String
(
f
).
match
(
/^function (\w*)/
);
return
match
==
null
?
''
:
match
[
1
];
}
module
.
exports
=
_functionName
;