In my code, I do a regex match for a string like this.
This gets obfuscated to -
str.match("\x5e\d\x2b\x24")
This doesn't seem to work though, as seen below -
> str="12345678901234567890";
'12345678901234567890'
> str.match('^\\d+$')
[ '12345678901234567890',
index: 0,
input: '12345678901234567890' ]
> str.match("\x5e\d\x2b\x24")
null