()
| 140 | * @publicApi |
| 141 | */ |
| 142 | export function getPlatform(): PlatformRef | null { |
| 143 | if (typeof ngServerMode !== 'undefined' && ngServerMode) { |
| 144 | return null; |
| 145 | } |
| 146 | |
| 147 | return _platformInjector?.get(PlatformRef) ?? null; |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Destroys the current Angular platform and all Angular applications on the page. |
no test coverage detected
searching dependent graphs…