You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Relay validates if a specific string is a payment card by using only regex. However, payment card numbers typically pass the Luhn algorithm check, what we could use to reduce false positives:
Most credit cards and many government identification numbers use the algorithm as a simple method of distinguishing valid numbers from mistyped or otherwise incorrect numbers.
The text was updated successfully, but these errors were encountered:
Currently, Relay validates if a specific string is a payment card by using only regex. However, payment card numbers typically pass the Luhn algorithm check, what we could use to reduce false positives:
The text was updated successfully, but these errors were encountered: