mirror of https://github.com/jkjoy/sunpeiwen.git
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.isFunction = void 0;
|
||
|
exports.isFunction = (v) => {
|
||
|
return typeof v === 'function';
|
||
|
};
|