isFunction.js 200 B

12345
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.isFunction = void 0;
  4. const isFunction = (value) => (typeof value === "function");
  5. exports.isFunction = isFunction;