5 lines
177 B
TypeScript
5 lines
177 B
TypeScript
import { InjectionToken } from '@angular/core';
|
|
|
|
export const CurrentDateToken = new InjectionToken('CurrentDate');
|
|
export function currentDateProvider() { return new Date(); }
|