Update packages for release branch

This commit is contained in:
Slawomir Jaranowski
2023-12-30 15:52:10 +01:00
parent 2300ba896e
commit 7802f6aec1
301 changed files with 43212 additions and 4 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;