Frontend/25_01_07/mai/node_modules/char-regex/index.d.ts

14 lines
284 B
TypeScript
Raw Permalink Normal View History

2025-01-28 10:38:27 +00:00
/**
* 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