mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(fn) {
|
|
if (fn.name) {
|
|
return fn.name;
|
|
}
|
|
return (fn.toString().trim().match(/^function\s*([^\s(]+)/) || [])[1];
|
|
};
|