From 3b2381b933237842e9679d3bca77afc28e578741 Mon Sep 17 00:00:00 2001 From: dcode Date: Sun, 23 Apr 2023 12:21:00 +0200 Subject: [PATCH] fix: Fix missing cast in process.ts (#2693) --- 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 {