🔧 Update dependencies

This commit is contained in:
Simon Schneegans
2022-10-09 06:09:18 +02:00
parent 8fb0b06275
commit e99491d01b
121 changed files with 6632 additions and 106 deletions

7
node_modules/uuid/dist/esm-node/validate.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import REGEX from './regex.js';
function validate(uuid) {
return typeof uuid === 'string' && REGEX.test(uuid);
}
export default validate;