mirror of
https://github.com/ASzc/change-string-case-action.git
synced 2024-11-24 02:43:51 +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; |