@ztimson/utils 0.28.15 → 0.28.16

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/dist/string.d.ts CHANGED
@@ -18,6 +18,12 @@ export declare const CHAR_LIST: string;
18
18
  * Converts text to camelCase
19
19
  */
20
20
  export declare function camelCase(str?: string): string;
21
+ /**
22
+ * Decode HTML escaped characters
23
+ * @param html HTML to clean up
24
+ * @returns {any}
25
+ */
26
+ export declare function decodeHtml(html: string): string;
21
27
  /**
22
28
  * Convert number of bytes into a human-readable size
23
29
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ztimson/utils",
3
- "version": "0.28.15",
3
+ "version": "0.28.16",
4
4
  "description": "Utility library",
5
5
  "author": "Zak Timson",
6
6
  "license": "MIT",