UNPKG

type-fns

Version:

A set of types, type checks, and type guards for simpler, safer, and easier to read code.

7 lines 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isAFunction = void 0; // eslint-disable-next-line @typescript-eslint/ban-types const isAFunction = (obj) => typeof obj === 'function'; exports.isAFunction = isAFunction; //# sourceMappingURL=isAFunction.js.map