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