546991cfdf0c6a3510779e69e30706991c76acb5b6674ef3eced16fd58d5e5f7b9e94a2942f1e2e29b31bcee42cdac541a857ede7a22b7c1007d7e3cdb8e5c 203 B

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