type-plus
    Preparing search index...

    Type Alias IsFunction<T, $O>

    IsFunction: $Special<
        T,
        $MergeOptions<
            $O,
            { $else: IsFunction.$<T, $O>; $then: $ResolveBranch<$O, [$Else]> },
        >,
    >

    🎭 predicate

    Validate if T is Function or function signature.

    Type Parameters

    type R = IsFunction<Function> // true
    type R = IsFunction<() => void> // true

    type R = IsFunction<never> // false
    type R = IsFunction<unknown> // false
    type R = IsFunction<number> // false

    type R = IsFunction<Function | number> // boolean
    type R = IsFunction<(() => string) | number> // boolean

    🔢 customize

    Filter to ensure T is Function or function signature, otherwise returns never.

    type R = IsFunction<Function, { selection: 'filter' }> // Function
    type R = IsFunction<() => void, { selection: 'filter' }> // () => void

    type R = IsFunction<never, { selection: 'filter' }> // never
    type R = IsFunction<unknown, { selection: 'filter' }> // never
    type R = IsFunction<Function | number, { selection: 'filter' }> // Function

    type R = IsFunction<(() => string) | number, { selection: 'filter' }> // () => string

    🔢 customize:

    Disable distribution of union types.

    type R = IsFunction<Function | 1> // boolean
    type R = IsFunction<Function | 1, { distributive: false }> // false

    🔢 customize

    Use unique branch identifiers to allow precise processing of the result.

    type R = IsFunction<Function, $SelectionBranch> // $Then
    type R = IsFunction<string, $SelectionBranch> // $Else