Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Jan 3, 2021
1 parent e4be195 commit babdfec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export { Cache } from './src/cache';
export { ReadonlyURL, URL, StandardURL, standardize } from './src/url';
export { tick, wait } from './src/clock';
export { throttle, debounce } from './src/throttle';
export { rnd16, rnd32, rnd36, rnd62, rnd0f, rnd0z, rnd0Z, unique } from './src/random';
export { rnd16, rnd32, rnd36, rnd62, rnd64, rnd0f, rnd0z, rnd0Z, unique } from './src/random';
export { uuid } from './src/uuid';
export { sqid } from './src/sqid';
export { assign, clone, extend } from './src/assign';
Expand Down
1 change: 1 addition & 0 deletions src/random.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const rnd16 = cons(16);
export const rnd32 = cons(32);
export const rnd36 = cons(36);
export const rnd62 = cons(62);
export const rnd64 = cons(64);
export const rnd0f = conv(rnd16);
export const rnd0z = conv(rnd36);
export const rnd0Z = conv(rnd62);
Expand Down

0 comments on commit babdfec

Please sign in to comment.