Files

5 lines
168 B
JavaScript
Raw Permalink 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;