mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 19:58:16 +08:00
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
|
import REGEX from './regex.js';
|
||
|
function validate(uuid) {
|
||
|
return typeof uuid === 'string' && REGEX.test(uuid);
|
||
|
}
|
||
|
export default validate;
|