sanitized 1.2.3 → 1.2.4

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -10,6 +10,12 @@ It accepts two params the first being the value to sanitize, and the second bein
10
10
  $ npm i sanitized
11
11
  ```
12
12
 
13
+ ### Node v16 Support
14
+
15
+ ```
16
+ $ npm i sanitized@1.2.1
17
+ ```
18
+
13
19
  ## Usage
14
20
 
15
21
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sanitized",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Recursive function that'll sanitize a string or ALL strings in a json input.",
5
5
  "main": "index.js",
6
6
  "scripts": {},
@@ -15,7 +15,9 @@
15
15
  ],
16
16
  "author": "Nameer Rizvi (https://github.com/nameer-rizvi)",
17
17
  "license": "ISC",
18
- "bugs": "https://github.com/nameer-rizvi/sanitized/issues",
18
+ "bugs": {
19
+ "url": "https://github.com/nameer-rizvi/sanitized/issues"
20
+ },
19
21
  "homepage": "https://github.com/nameer-rizvi/sanitized#readme",
20
22
  "dependencies": {
21
23
  "dompurify": "^3.1.4",