We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a43d43a commit 1c9cadaCopy full SHA for 1c9cada
encoding/deno.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "0.0.1",
+ "version": "0.0.2",
3
"name": "@stdext/encoding",
4
"lock": false,
5
"exports": {
encoding/hex.ts
@@ -1,3 +1,14 @@
+/**
+ * Utilities for hex encoded data.
+ * @module
+ *
+ * ```ts
6
+ * import { dump } from "@stdext/encoding/hex";
7
+ * const buffer = new TextEncoder().encode("Hello world!");
8
+ * console.log(dump(buffer));
9
+ * ```
10
+ */
11
+
12
/**
13
* Convert a buffer to a hexdump string.
14
*
0 commit comments