()
| 95 | * |
| 96 | */ |
| 97 | export function provideAnimations(): Provider[] { |
| 98 | performanceMarkFeature('NgEagerAnimations'); |
| 99 | // Return a copy to prevent changes to the original array in case any in-place |
| 100 | // alterations are performed to the `provideAnimations` call results in app code. |
| 101 | return [...BROWSER_ANIMATIONS_PROVIDERS]; |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * A null player that must be imported to allow disabling of animations. |
no test coverage detected
searching dependent graphs…