mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-04-16 08:18:05 +08:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
import { includes, isEmpty } from 'lodash'
|
|
|
|
const REDIS_GLOB_CHAR = ['?', '*', '[', ']', '{', '}']
|
|
export const isRedisGlob = (str) => {
|
|
if (!isEmpty(str)) {
|
|
for (const c of REDIS_GLOB_CHAR) {
|
|
if (includes(str, c)) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|