rubick icon indicating copy to clipboard operation
rubick copied to clipboard

Fix regex match error

Open qidian99 opened this issue 2 years ago • 0 comments


const regStr = '/abc-/gi';
const lists = [
    {
        type: 'regex',
        match: regStr
    }
]

console.log(searchKeyValues(lists, 'abc')) // should not match
console.log(searchKeyValues(lists, 'abc-')) // should match

qidian99 avatar Jun 04 '23 12:06 qidian99