mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-11 04:19:25 +00:00
8 lines
263 B
JavaScript
8 lines
263 B
JavaScript
"use strict";
|
|
/* eslint-disable @typescript-eslint/no-unsafe-function-type */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getFunctionName = getFunctionName;
|
|
function getFunctionName(fn) {
|
|
return fn.name || '[anonymous Function]';
|
|
}
|