()
| 282 | } |
| 283 | |
| 284 | export function isRealDevice() { |
| 285 | try { |
| 286 | if (NSProcessInfo.processInfo.environment.valueForKey('SIMULATOR_DEVICE_NAME')) { |
| 287 | return false; |
| 288 | } |
| 289 | return true; |
| 290 | } catch (e) { |
| 291 | return true; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | function printCGRect(rect: CGRect) { |
| 296 | if (rect) { |
no outgoing calls
no test coverage detected