mirror of
https://github.com/ajnart/homarr.git
synced 2026-07-10 21:33:41 +02:00
4 lines
131 B
TypeScript
4 lines
131 B
TypeScript
|
|
export const isFunction = (value: unknown): value is (...args: unknown[]) => unknown => {
|
||
|
|
return typeof value === "function";
|
||
|
|
};
|