Sign in
◑
Theme
bazel
/
continuous-integration
/
da613edea5beabf9fab79fb7e8577bf46a21f3e8
/
.
/
actions
/
bcr-pr-reviewer
/
node_modules
/
uuid
/
dist
/
esm-browser
/
validate.js
blob: f1cdc7af49bcfc2a66fb1efb3532095e85ce8415 [
file
]
import
REGEX from
'./regex.js'
;
function
validate
(
uuid
)
{
return
typeof
uuid
===
'string'
&&
REGEX
.
test
(
uuid
);
}
export
default
validate
;