es-toolkit 1.17.0-dev.519 → 1.17.0-dev.521

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.
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Converts the characters "&", "<", ">", '"', and "'" in `str` to their corresponding HTML entities.
3
+ * For example, "<" becomes "&lt;".
3
4
  *
4
5
  * @param {string} str The string to escape.
5
6
  * @returns {string} Returns the escaped string.
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Converts the characters "&", "<", ">", '"', and "'" in `str` to their corresponding HTML entities.
3
+ * For example, "<" becomes "&lt;".
3
4
  *
4
5
  * @param {string} str The string to escape.
5
6
  * @returns {string} Returns the escaped string.
@@ -1,5 +1,6 @@
1
1
  /**
2
- * The inverse of `escape`. This method converts the HTML entities `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `str` to their corresponding characters.
2
+ * Converts the HTML entities `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `str` to their corresponding characters.
3
+ * It is the inverse of `escape`.
3
4
  *
4
5
  * @param {string} str The string to unescape.
5
6
  * @returns {string} Returns the unescaped string.
@@ -1,5 +1,6 @@
1
1
  /**
2
- * The inverse of `escape`. This method converts the HTML entities `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `str` to their corresponding characters.
2
+ * Converts the HTML entities `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `str` to their corresponding characters.
3
+ * It is the inverse of `escape`.
3
4
  *
4
5
  * @param {string} str The string to unescape.
5
6
  * @returns {string} Returns the unescaped string.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "es-toolkit",
3
3
  "description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
4
- "version": "1.17.0-dev.519+0bb14458",
4
+ "version": "1.17.0-dev.521+4fea8d2a",
5
5
  "homepage": "https://es-toolkit.slash.page",
6
6
  "bugs": "https://github.com/toss/es-toolkit/issues",
7
7
  "repository": {