"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.prettyPrintFunction = void 0;
const prettyPrintFunction = function (value) {
return `function ${value.name} (...) { ... }`;
};
exports.prettyPrintFunction = prettyPrintFunction;