6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
|
import { localDateString } from "$lib/dates.ts";
|
||
|
|
||
|
Deno.test("Dates", () => {
|
||
|
console.log("Local date string", localDateString(new Date()));
|
||
|
});
|