~bradclawsie/textras

5d1568051cecfd5ceb48672ef54d30e01ad1d6c1 — Brad Clawsie 1 year, 12 days ago 7d3c091 0.1.7
std to 0.200.0; fix assertEquals ref
2 files changed, 2 insertions(+), 2 deletions(-)

M mod.ts
M test.ts
M mod.ts => mod.ts +1 -1
@@ 1,7 1,7 @@
import {
  decode as hexDecode,
  encode as hexEncode,
} from "https://deno.land/std@0.182.0/encoding/hex.ts";
} from "https://deno.land/std@0.200.0/encoding/hex.ts";

/**
 * convert a string to its byte array representation

M test.ts => test.ts +1 -1
@@ 1,4 1,4 @@
import { assertEquals } from "https://deno.land/std@0.182.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.200.0/assert/mod.ts";
import { bytesToHex, bytesToString, hexToBytes, stringToBytes } from "./mod.ts";

Deno.test("round trip hex value", () => {