UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 260 B
import { Fn } from "../types"; /** * @description If the type of the value is a function, then return true, otherwise return false. * @param {unknown} value - unknown */ declare const isFunction: (value: unknown) => value is Fn; export default isFunction;