Skip to content

Commit 06b9691

Browse files
authored
Update core-utils.ts
1 parent b303d36 commit 06b9691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function omit<K extends string, T extends Record<K, unknown>>(object: T,
1111
return result
1212
}
1313

14-
export function shortuuid(): string {
14+
export function shortuuid() {
1515
let firstPart = (Math.random() * 46656) | 0;
1616
let secondPart = (Math.random() * 46656) | 0;
1717
return ("000" + firstPart.toString(36)).slice(-3) + ("000" + secondPart.toString(36)).slice(-3);

0 commit comments

Comments
 (0)