Skip to content

Instantly share code, notes, and snippets.

@Nps-rf
Created March 2, 2023 13:01
Show Gist options
  • Save Nps-rf/3139e7878e98097fd183aea24755d0dc to your computer and use it in GitHub Desktop.
Save Nps-rf/3139e7878e98097fd183aea24755d0dc to your computer and use it in GitHub Desktop.
JavaScript isUUID func.
const isUUID = (value) => {
return /^[\da-f]{8}-[\da-f]{4}-[1-5][\da-f]{3}-[89ab][\da-f]{3}-[\da-f]{12}$/i.test(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment