export const REGEX_NON_NUMBERS = /[^0-9]/g
/**
* Matches text inside round brackets.
*
* @type {RegExp}
* @style target
*/
export const REGEX_INSIDE_ROUND_BRACKETS = /(?<=\().+?(?=\))/g
Matches all non-digit characters.
Target style API. Preferred for new code.