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