export enum FunctionErrorCode { NOT_FUNCTION = "NOT_FUNCTION" } export function checkFunction (mixed : any) : undefined|FunctionErrorCode { if (mixed instanceof Function) { return undefined; } else { return FunctionErrorCode.NOT_FUNCTION; } }