diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-09-27 06:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:22:32 +0200 |
commit | df02e315075456f8d5f75472abbb1fa81e237827 (patch) | |
tree | d0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/encoding/base32_test.ts | |
parent | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff) |
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/encoding/base32_test.ts')
-rw-r--r-- | std/encoding/base32_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/base32_test.ts b/std/encoding/base32_test.ts index cfefe54d7..a604bf323 100644 --- a/std/encoding/base32_test.ts +++ b/std/encoding/base32_test.ts @@ -1,8 +1,8 @@ // Test cases copied from https://github.com/LinusU/base32-encode/blob/master/test.js // Copyright (c) 2016-2017 Linus Unnebäck. MIT license. // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { assertEquals, assert } from "../testing/asserts.ts"; -import { encode, decode } from "./base32.ts"; +import { assert, assertEquals } from "../testing/asserts.ts"; +import { decode, encode } from "./base32.ts"; // Lifted from https://stackoverflow.com/questions/38987784 const fromHexString = (hexString: string): Uint8Array => |