Sign in
chromium
/
devtools
/
devtools-frontend
/
3c5c4e330c404cb2f994cee446f48fbafeda2bcf
/
.
/
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
;