diff options
Diffstat (limited to 'js/get_random_values.ts')
-rw-r--r-- | js/get_random_values.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/get_random_values.ts b/js/get_random_values.ts index 154e77f75..e54f34785 100644 --- a/js/get_random_values.ts +++ b/js/get_random_values.ts @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import * as dispatch from "./dispatch"; -import { sendSync } from "./dispatch_json"; -import { assert } from "./util"; +import * as dispatch from "./dispatch.ts"; +import { sendSync } from "./dispatch_json.ts"; +import { assert } from "./util.ts"; /** Synchronously collects cryptographically secure random values. The * underlying CSPRNG in use is Rust's `rand::rngs::ThreadRng`. |