Files
arbiter/node_modules/http-proxy-middleware/dist/utils/function.js
2025-03-19 22:47:50 -05:00

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]';
}