mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-11 02:03:10 +00:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
import { bytesToHex } from "@waku/utils/bytes";
|
|
|
|
export function randomNumber() {
|
|
return Math.ceil(Math.random() * 1000);
|
|
}
|
|
|
|
export function renderBytes(bytes) {
|
|
return bytes ? bytesToHex(bytes) : "none";
|
|
}
|