/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/src/version.ts
30 строк
673 B
arturovt
refactor(core): mark `VERSION` as `@__PURE__` for better tree-shaking (#63400)
27 авг 2025, 21:39
27 авг 2025, 21:39
eee3e5a
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /** * @description Represents the version of Angular * * @publicApi */ export class Version { public readonly major: string; public readonly minor: string; public readonly patch: string; constructor(public full: string) { const parts = full.split('.'); this.major = parts[0]; this.minor = parts[1]; this.patch = parts.slice(2).join('.'); } } /** * @publicApi */ export const VERSION = /* @__PURE__ */ new Version('0.0.0-PLACEHOLDER');