paksa92

Results 10 comments of paksa92

@derekstavis how to apply it? Edit: nevermind :)

> No, no idea why that is happening.... Does it always crash or just with certain files / paths? And only base64? It only crashes when reading as `base64` and...

This library works fine on the latest versions of react-native and Expo

@tats-u we agreed on this final regex pattern: `/^(?=.{1,253}$)(?!-)([a-z0-9-]{1,63}(?

It still needs docs for the website

Sorry @JacKyDev I didn't mean to steal your thunder. I just had some spare time left and since it been a few days since you responded I figured I'd step...

@JacKyDev yeah, I already mentioned that it is missing in the PR, but I will add it. `CONTRIBUTING.md` does not mention a "definition of done" for new features, maybe it...

> /^(?=.{1,253}$)(?![-])(?!.+[-].)([\w-]{1,63}.)+[a-z]{2,63}$/iu @JacKyDev I'm currently testing this regex and I think it's wrong. First off, TLD's may not exceed a length of 6. Changing the regex to: ``` /^(?=.{1,253}$)(?![-])(?!.+[-].)([\w-]{1,63}.)+[a-z]{2,6}$/iu ```...

You're right @JacKyDev, there is no limit of 6 characters on the TLD. My assumption was based on some stackoverflow posts I've seen. I think the regex is all set...