UNPKG

@stilljs/core

Version:

![NPM Version](https://img.shields.io/npm/v/%40stilljs%2Fcore) ![NPM Downloads](https://img.shields.io/npm/d18m/%40stilljs%2Fcore) ![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hy/%40stilljs%2Fcore) ![YouTube Channel Views](https://img.shield

18 lines (13 loc) 324 B
export class UUIDUtil { static newId() { const obj = UUIDUtil; return `${obj.numberId()}${obj.timeStamp()}`; } static numberId() { return Math.random().toString().split('.')[1]; } static timeStamp() { return new Date().getTime(); } } //window.UUIDUtil = UUIDUtil;