"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isFunction = void 0;
|
|
exports.isFunction = (v) => {
|
|
return typeof v === 'function';
|
|
};
|