https://github.com/angular/angular
Raw File
Tip revision: 5c3407507a24036f102bf00e2b02b4e33c6419db authored by Andrew Kushnir on 21 June 2023, 18:33:04 UTC
release: cut the v16.2.0-next.0 release
Tip revision: 5c34075
current-date.ts
import { InjectionToken } from '@angular/core';

export const CurrentDateToken = new InjectionToken('CurrentDate');
export function currentDateProvider() { return new Date(); }
back to top