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

11
node_modules/uuid/dist/esm-node/version.js generated vendored Normal file
View file

@ -0,0 +1,11 @@
import validate from './validate.js';
function version(uuid) {
if (!validate(uuid)) {
throw TypeError('Invalid UUID');
}
return parseInt(uuid.substr(14, 1), 16);
}
export default version;