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 b89d707 commit f6abdfbCopy full SHA for f6abdfb
1 file changed
README.md
@@ -49,6 +49,18 @@ const jsSHA1 = require("jssha/dist/sha1");
49
import jsSHA from "jssha";
50
```
51
52
+#### Deno
53
+
54
+jsSHA simply works with Deno via the `npm:` import specifier:
55
56
+```typescript
57
+import jsSHA from "npm:jssha";
58
+/* Limited variant files are also available */
59
+import jsSHA1 from "npm:jssha/sha1";
60
+```
61
62
+TypeScript types are resolved automatically from the package.
63
64
### Hashing
65
66
Instantiate a new `jsSHA` object with the desired hash variant, input format,
0 commit comments