UNPKG

test-date-converter

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.0.0.

19 lines (15 loc) 332 B
import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class TestDateService { constructor() { console.log('creating instance of date converter') } convertDateToString(date) { var newDate = date.toISOString() .replace('T',' ') .replace('Z','') return newDate } }