mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-25 16:01:00 +01: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";
|
||
|
|
};
|