mirror of
https://git.mirrors.martin98.com/https://github.com/cyberman54/curl
synced 2025-08-22 13:29:10 +08:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
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; |