mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
|
import * as v4 from "uuid/v4"
|
||
|
|
||
|
export default class IdGenerator {
|
||
|
public static generateId(): string {
|
||
|
const id = `${v4()}${v4()}`
|
||
|
return id.replace(/-/g, "")
|
||
|
}
|
||
|
}
|