hexo/node_modules/ali-oss/lib/common/utils/isFunction.js

7 lines
181 B
JavaScript
Raw Normal View History

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