Updating node_modules

This commit is contained in:
Chris Raynor 2020-09-29 15:05:16 +01:00
parent 8200c137dc
commit 47fa956a52
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
87 changed files with 3011 additions and 260 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;