frontend/.pnpm-store/v3/files/e1/431fecdd95c33f065d40bba4eaba802ea9821ef0de97676d3564165ff4dd90a399006fd6bcdee193f39faa4dcdc2245f1f58ebfdbc017db73a26c22c7c8ea4

4 lines
88 B
Plaintext

export function isFunction(x: any): x is Function {
return typeof x === 'function';
}