Created
February 15, 2023 14:50
-
-
Save godrix/10e77838f651615d8c489f298ea8e2c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isExponentPushToken(str) { | |
const regex = /^ExponentPushToken\[[A-Za-z0-9_-]{22}\]$/; | |
return regex.test(str); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment