UNPKG
4.5
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
Monadic test assertions
github.com/TylorS/4.5
TylorS/4.5
4.5
/
src
/
helpers
/
functionName.ts
8 lines
(5 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
function
functionName
(
f: any
) {
if
(f.
name
)
return
f.
name
;
const
m =
String
(f).
match
(
/^function\s*([\w$]+)/
);
if
(m)
return
m[
1
]; }