PunycodeSwift
PunycodeSwift copied to clipboard
PunycodeSwift is a pure Swift library to allows you to encode and decode punycoded strings
The main product is defined as `Punnycode` in the Package.swift. This made figuring out how to install it tricky.
Hi! Thanks a lot for your hard work on this project. I've discovered two interesting behaviours which you probably can be interested in: - `.punycodeEncoded` mistransforms `goo.gl` into `goo.gl-`, while...
The podspec in the repo matches the release version `2.0.0`, however, it looks like it was never published to cocoapods. Am unable to update to latest version using cocoapods (which...
https://github.com/gumob/PunycodeSwift/blob/30a462bdb4398ea835a3585472229e0d74b36ba5/Sources/Punycode.swift#L148 in this place of the code it is necessary to use, for example, such protection: guard Character(scalar).isLetter || Character(scalar).isNumber else { return nil } ### code for testing: /*...