Index: node_modules/es-toolkit/dist/string/trimEnd.js
===================================================================
--- node_modules/es-toolkit/dist/string/trimEnd.js	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
+++ node_modules/es-toolkit/dist/string/trimEnd.js	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
@@ -0,0 +1,29 @@
+'use strict';
+
+Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
+
+function trimEnd(str, chars) {
+    if (chars === undefined) {
+        return str.trimEnd();
+    }
+    let endIndex = str.length;
+    switch (typeof chars) {
+        case 'string': {
+            if (chars.length !== 1) {
+                throw new Error(`The 'chars' parameter should be a single character string.`);
+            }
+            while (endIndex > 0 && str[endIndex - 1] === chars) {
+                endIndex--;
+            }
+            break;
+        }
+        case 'object': {
+            while (endIndex > 0 && chars.includes(str[endIndex - 1])) {
+                endIndex--;
+            }
+        }
+    }
+    return str.substring(0, endIndex);
+}
+
+exports.trimEnd = trimEnd;
