Skip to content

Commit

Permalink
fix: removed export for guid part generation (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
markovav-official authored Nov 11, 2024
1 parent 7a109b6 commit e13ebd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abstractions/src/utils/guidUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const createGuid = () => [gen(2), gen(1), gen(1), gen(1), gen(3)].join("-
* @param count the number of 2 byte chunks to generate.
* @returns a part of a GUID.
*/
export const gen = (count: number) => {
const gen = (count: number) => {
let out = "";
for (let i = 0; i < count; i++) {
// eslint-disable-next-line no-bitwise
Expand Down

0 comments on commit e13ebd7

Please sign in to comment.