summaryrefslogtreecommitdiff
path: root/js/utime.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/utime.ts')
-rw-r--r--js/utime.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/utime.ts b/js/utime.ts
index c71710458..7495378b1 100644
--- a/js/utime.ts
+++ b/js/utime.ts
@@ -1,6 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { sendSync, sendAsync } from "./dispatch_json";
-import { OP_UTIME } from "./dispatch";
+import { sendSync, sendAsync } from "./dispatch_json.ts";
+import { OP_UTIME } from "./dispatch.ts";
function toSecondsFromEpoch(v: number | Date): number {
return v instanceof Date ? v.valueOf() / 1000 : v;