Skip to content

Commit

Permalink
fix(console): Remove temp console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pagoru committed Apr 19, 2024
1 parent 489ae12 commit 40b67a5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/uid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const uid = <I, C extends string | number, D>(

const _getUID = (): number => (safe ? lastSafeIdMap[key] : lastIdMap[key]) + increment;
do {
console.log(lastSafeIdMap[key]);
if (safe) lastSafeIdMap[key]++;
else lastIdMap[key]++;
} while (idCheckMapFunc[key](_getUID()));
Expand Down

0 comments on commit 40b67a5

Please sign in to comment.