refact dir

This commit is contained in:
pengfei.zhou
2019-07-17 10:48:36 +08:00
parent 69108124a0
commit f52bc08895
13 changed files with 355 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
let __uniqueId__: number = 0
export function uniqueId() {
return `__unique_${__uniqueId__++}__`;
}