Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

date

import { date } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/randomjs/mod.ts";

Returns a Distribution that returns a random Date within the inclusive range of [start, end].

function date(start: Date, end: Date): Distribution<Date>;
§
date(start: Date, end: Date): Distribution<Date>
[src]

§Parameters

§
start: Date
[src]

The minimum Date

§
end: Date
[src]

The maximum Date

§Return Type