tinyhmacmd5 0.2.1-es2026 → 0.2.2-es2026
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ You can also use other package managers (e.g. `pnpm` or `yarn`) in place of `npm
|
|
|
42
42
|
See https://www.jsdelivr.com/package/npm/tinyhmacmd5
|
|
43
43
|
|
|
44
44
|
```html
|
|
45
|
-
<script src="https://cdn.jsdelivr.net/npm/tinyhmacmd5"></script>
|
|
45
|
+
<script src="https://cdn.jsdelivr.net/npm/tinyhmacmd5@es2026"></script>
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
It will define the `md5` function using `var`.
|
|
@@ -50,7 +50,7 @@ It will define the `md5` function using `var`.
|
|
|
50
50
|
### UNPKG
|
|
51
51
|
|
|
52
52
|
```html
|
|
53
|
-
<script src="https://unpkg.com/tinyhmacmd5"></script>
|
|
53
|
+
<script src="https://unpkg.com/tinyhmacmd5@es2026"></script>
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
It will define the `md5` function using `var`.
|
package/package.json
CHANGED