Skip to content

Commit

Permalink
style: run deno fmt
Browse files Browse the repository at this point in the history
MariusVatasoiu committed Feb 7, 2021
1 parent 8c652f2 commit 486eb4b
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* Copyright(c) 2020 Christian Norrman
* MIT Licensed
*/
import { HmacSha256, HmacSha512, base64url } from "./deps.ts";
import { base64url, HmacSha256, HmacSha512 } from "./deps.ts";

/**
* Enum of supported algorithms for keygrip
2 changes: 1 addition & 1 deletion test.ts
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import {
assert,
assertEquals,
} from "https://deno.land/std@0.86.0/testing/asserts.ts";
import { Keygrip, Algorithm } from "./mod.ts";
import { Algorithm, Keygrip } from "./mod.ts";
const { test } = Deno;

const keygrip = new Keygrip(["secret", "key", "right?"]);

0 comments on commit 486eb4b

Please sign in to comment.