Index: frontend/node_modules/char-regex/index.d.ts
===================================================================
--- frontend/node_modules/char-regex/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/char-regex/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,13 @@
+/**
+ * A regex to match any full character, considering weird character ranges.
+ * @example
+ * ```
+ * const charRegex = require("char-regex");
+ *
+ * "❤️👊🏽".match(charRegex());
+ * //=> ["❤️", "👊🏽"]
+ * ```
+*/
+declare function charRegex(): RegExp
+
+export = charRegex
