UNPKG
webdriverio-automation
Version:
latest (1.0.0)
1.0.0
WebdriverIO-Automation android ios project
webdriverio-automation
/
node_modules
/
uuid
/
dist
/
esm-node
/
validate.js
7 lines
(5 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
REGEX
from
'./regex.js'
;
function
validate
(
uuid
) {
return
typeof
uuid ===
'string'
&&
REGEX
.
test
(uuid); }
export
default
validate;