Skip to content

Commit 0ed4001

Browse files
committed
Modify: use deno.land module
1 parent 7508ec5 commit 0ed4001

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This module depends on https://deno.land/x/binary_reader@v0.1.6/mod.ts .
66

77
## Usage
88
```typescript
9-
import { BinaryToJSON } from "./binary_to_json.ts";
9+
import { BinaryToJSON } from "https://deno.land/x/binary_to_json@v0.1.0/mod.ts";
1010

1111
const buffer = new ArrayBuffer(4);
1212
const arry = new Uint8Array(buffer);

test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals, assertNotEquals } from "https://deno.land/std/testing/asserts.ts";
2-
import { BinaryToJSON } from "./binary_to_json.ts";
2+
import { BinaryToJSON } from "https://deno.land/x/binary_to_json@v0.1.0/mod.ts";
33

44
Deno.test(
55
"constructor",

0 commit comments

Comments
 (0)