This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Zone | Version | Sum | Versions 1k+ | Total Versions | Status | Release Year | |
---|---|---|---|---|---|---|---|
Modern | v20 | 624125 | 21 | 26 | Latest | 2024 | |
Transition | v19 | 798266 | 27 | 34 | LTS | 2024 | |
Transition | v18 | 518454 | 13 | 17 | LTS | 2024 | |
Transition | v17 | 321217 | 28 | 33 | LTS | 2023 | |
Classic | v16 | 190660 | 12 | 15 | LTS | 2023 | |
Classic | v15 | 154288 | 15 | 18 | LTS | 2022 | |
Classic | v14 | 132782 | 20 | 23 | LTS | 2022 | |
Classic | v13 | 75678 | 18 | 22 | Legacy | 2021 | |
Classic | v12 | 57184 | 16 | 22 | Legacy | 2021 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Angular | Versions | Sum 1k+ | Market Share Percent | |
---|---|---|---|---|
🚀 Modern (v20+) | v20 | 624125 | 19 | |
🔄 Transition (v17-19) | v17-v19 | 1637937 | 50 | |
📦 Classic (≤v16) | v2-v16 | 1015296 | 31 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({ | |
name: 'map', | |
}) | |
export class MapPipe implements PipeTransform { | |
public transform<T extends unknown[], V, R>( | |
value: V, | |
mapFn: (...args: [V, ...T]) => R, | |
...args: T |