From 0940421ff2156769015f489cdc1f364b096f6803 Mon Sep 17 00:00:00 2001 From: dcode Date: Sun, 23 Apr 2023 11:26:11 +0200 Subject: [PATCH] Fix missing cast in process.ts --- std/assembly/process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/assembly/process.ts b/std/assembly/process.ts index 107e6c2ace..63c35e1b98 100644 --- a/std/assembly/process.ts +++ b/std/assembly/process.ts @@ -29,7 +29,7 @@ export namespace process { } export function time(): i64 { - return Date_binding.now(); + return Date_binding.now(); } export function hrtime(): u64 {