std/cbor/_common_test.ts

6 lines
199 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
export function random(start: number, end: number): number {
return Math.floor(Math.random() * (end - start) + start);
}