fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 0ed3dce1d2 - Show all commits

View file

@ -112,8 +112,7 @@ export class GBAdminService implements IGBAdminService {
} }
public static getNumberIdentifier(size: number = 14): string { public static getNumberIdentifier(size: number = 14): string {
return Math.floor(Math.random() * size).toString();
return Math.trunc(Math.random() * size).toString();
} }
/** /**