mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-07 19:14:11 +08:00
Fix format regex error that will match all inputs
This commit is contained in:
parent
e52d3bbbc9
commit
472879f9b2
@ -6,7 +6,7 @@ import useFocus from './clipboardWatch';
|
||||
|
||||
function formatReg(regStr) {
|
||||
const flags = regStr.replace(/.*\/([gimy]*)$/, '$1');
|
||||
const pattern = flags.replace(new RegExp('^/(.*?)/' + flags + '$'), '$1');
|
||||
const pattern = regStr.replace(new RegExp('^/(.*?)/' + flags + '$'), '$1');
|
||||
return new RegExp(pattern, flags);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user