diff options
author | Minteck <contact@minteck.org> | 2022-06-14 10:56:15 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-14 10:56:15 +0200 |
commit | ecb92e72778bb12b8875145650610617624c6530 (patch) | |
tree | 5774dd68fad42653cc4abe7d88e586ba5c4c39a3 /node_modules/uuid/dist/esm-browser/validate.js | |
download | elac-ecb92e72778bb12b8875145650610617624c6530.tar.gz elac-ecb92e72778bb12b8875145650610617624c6530.tar.bz2 elac-ecb92e72778bb12b8875145650610617624c6530.zip |
Initial commit
Diffstat (limited to 'node_modules/uuid/dist/esm-browser/validate.js')
-rw-r--r-- | node_modules/uuid/dist/esm-browser/validate.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/node_modules/uuid/dist/esm-browser/validate.js b/node_modules/uuid/dist/esm-browser/validate.js new file mode 100644 index 0000000..f1cdc7a --- /dev/null +++ b/node_modules/uuid/dist/esm-browser/validate.js @@ -0,0 +1,7 @@ +import REGEX from './regex.js'; + +function validate(uuid) { + return typeof uuid === 'string' && REGEX.test(uuid); +} + +export default validate;
\ No newline at end of file |