1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Injectable } from '@angular/core'; @Injectable() export class MaasService { constructor() { } generateUniqueId(): string { const timestamp = new Date().getTime(); const randomNum = Math.floor(Math.random() * 1000000); return `${timestamp}${randomNum}`; } }