https://github.com/angular/angular
Raw File
Tip revision: 07dd195c40f9bd144b9b29afc909c0999ed825d7 authored by Joey Perrott on 07 February 2024, 18:14:08 UTC
WIP
Tip revision: 07dd195
current-date.ts
import { InjectionToken } from '@angular/core';

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