Skip to content

Commit 40b67a5

Browse files
committed
fix(console): Remove temp console.log
1 parent 489ae12 commit 40b67a5

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/uid.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const uid = <I, C extends string | number, D>(
2525

2626
const _getUID = (): number => (safe ? lastSafeIdMap[key] : lastIdMap[key]) + increment;
2727
do {
28-
console.log(lastSafeIdMap[key]);
2928
if (safe) lastSafeIdMap[key]++;
3029
else lastIdMap[key]++;
3130
} while (idCheckMapFunc[key](_getUID()));

0 commit comments

Comments
 (0)