github-actions[bot]
Update from GitHub Actions
f8f5b35
raw
history blame contribute delete
142 Bytes
import REGEX from './regex.js';
function validate(uuid) {
return typeof uuid === 'string' && REGEX.test(uuid);
}
export default validate;