TenantAtlas/apps/platform/.pnpm-store/v10/files/c3/546991cfdf0c6a3510779e69e30706991c76acb5b6674ef3eced16fd58d5e5f7b9e94a2942f1e2e29b31bcee42cdac541a857ede7a22b7c1007d7e3cdb8e5c
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

8 lines
203 B
Plaintext

/**
* Returns true if the object is a function.
* @param value The value to check
*/
export function isFunction(value: any): value is (...args: any[]) => any {
return typeof value === 'function';
}