UNPKG

@levabala/react-native-uuid

Version:

react-native-uuid is a zero-dependency TypeScript implementation of RFC4122.

6 lines (4 loc) 132 B
import REGEX from './regex'; export const validate = (uuid: string) => { return typeof uuid === 'string' && REGEX.test(uuid); };