diff options
Diffstat (limited to 'cli/js/utime.ts')
-rw-r--r-- | cli/js/utime.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/utime.ts b/cli/js/utime.ts index 2026e60bf..9224a3ffa 100644 --- a/cli/js/utime.ts +++ b/cli/js/utime.ts @@ -1,5 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { sendSync, sendAsync } from "./dispatch_json.ts"; +import { sendSync, sendAsync } from "./ops/dispatch_json.ts"; function toSecondsFromEpoch(v: number | Date): number { return v instanceof Date ? v.valueOf() / 1000 : v; |