(serial: string)
| 57 | } |
| 58 | |
| 59 | function isEmulatorSerial(serial: string): boolean { |
| 60 | return serial.startsWith(EMULATOR_SERIAL_PREFIX); |
| 61 | } |
| 62 | |
| 63 | function normalizeAndroidName(value: string): string { |
| 64 | return value.toLowerCase().replace(/_/g, ' ').replace(/\s+/g, ' ').trim(); |
no test coverage detected