Sha256: f04bb9ef1ab04df932c96f2e537f13378cbdd1ece415e7ee8ff84db496207d11
Contents?: true
Size: 209 Bytes
Versions: 26
Compression:
Stored size: 209 Bytes
Contents
/** * Generate a random ID string to represent a request. * @example * createRequestId() * // "f774b6c9c600f" */ export function createRequestId(): string { return Math.random().toString(16).slice(2) }
Version data entries
26 entries across 26 versions & 1 rubygems