Skip to content

Instantly share code, notes, and snippets.

@Fcmam5
Last active February 10, 2021 13:40
Show Gist options
  • Save Fcmam5/8aac6deb8dad9f44aa897523b004c1e3 to your computer and use it in GitHub Desktop.
Save Fcmam5/8aac6deb8dad9f44aa897523b004c1e3 to your computer and use it in GitHub Desktop.
Berber (Tifinagh) regex
const REGEX = /^[\u2D30-\u2D7F\\s]+$/
// Examples
console.log(REGEX.test("ⵡⴻⵀⵔⴰⵏ")); // True
console.log(REGEX.test("Oran")); // False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment