nawordar/ts-when

View on GitHub
src/types/Callable.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Callable = (subject?: any) => any;
export const isCallable = (subject: any): subject is Callable => typeof subject === "function";