mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import * as uuidv4 from 'uuid/v4';
|
|
|
|
@Injectable()
|
|
export class UUIDService {
|
|
generate(): string {
|
|
return uuidv4();
|
|
}
|
|
}
|