@eide/foir-cli 0.15.1 → 0.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3777,7 +3777,7 @@ async function parseInputData(opts) {
|
|
|
3777
3777
|
function isUUID(value) {
|
|
3778
3778
|
return /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(
|
|
3779
3779
|
value
|
|
3780
|
-
) || /^
|
|
3780
|
+
) || /^[a-z][a-z0-9]{23,31}$/.test(value);
|
|
3781
3781
|
}
|
|
3782
3782
|
function parseFilters(filterStr) {
|
|
3783
3783
|
if (!filterStr) return [];
|