Remove lodash.uniqueId

This commit is contained in:
venashial
2022-04-03 11:45:04 -07:00
parent 44c8574f1b
commit 3646c0d0a3
8 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
let idCounter = 0;
export function uniqueId(prefix = ''): string {
const id = ++idCounter;
return prefix + id;
}