File size: 142 Bytes
f8f5b35
 
 
 
 
1
2
3
4
5
6
import REGEX from './regex.js';
function validate(uuid) {
    return typeof uuid === 'string' && REGEX.test(uuid);
}
export default validate;