UNPKG

@systemic-games/react-native-bluetooth-le

Version:
5 lines (4 loc) 191 B
export function getNativeErrorCode(error: unknown): string | undefined { const code = (error as any).code; return typeof code === "string" ? code : code ? String(code) : undefined; }