mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-19 22:18:03 +00:00
Find view: paste ID and press Enter (fixes #55)
This commit is contained in:
@ -22,3 +22,10 @@ export function looseJsonIsValid(json) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
export function stringCouldBeID(string) {
|
||||
if (looseJsonIsValid(string)) {
|
||||
return false;
|
||||
}
|
||||
return /^[a-zA-Z0-9_-]{1,}$/.test(string);
|
||||
}
|
||||
|
Reference in New Issue
Block a user