mrr.sj.front/node_modules/ali-oss/lib/common/utils/isFunction.js

7 lines
175 B
JavaScript
Raw Normal View History

2026-03-24 11:45:13 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFunction = void 0;
exports.isFunction = (v) => {
return typeof v === 'function';
};