Files
bigwo/dev-assistant-mcp/node_modules/form-data-encoder/lib/cjs/util/isFunction.js

5 lines
168 B
JavaScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const isFunction = (value) => (typeof value === "function");
exports.default = isFunction;