Added node module dependencies into version control
Test / test (push) Successful in 9s

This commit is contained in:
2023-07-27 20:31:14 +02:00
parent 051220e2a1
commit 08bda289ec
62 changed files with 2000 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import REGEX from './regex.js';
function validate(uuid) {
return typeof uuid === 'string' && REGEX.test(uuid);
}
export default validate;