Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
97f7c4e83c738e81ffffa69dfc44e38780bcbbfa
/
.
/
node_modules
/
uuid
/
dist-node
/
validate.js
blob: 444a1a2f904db825c3ed2ad4d4029ad0ecfb742c [
file
]
import
REGEX from
'./regex.js'
;
function
validate
(
uuid
)
{
return
typeof
uuid
===
'string'
&&
REGEX
.
test
(
uuid
);
}
export
default
validate
;