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
FromHex currently requires that the number of characters is not odd, even when the trailing characters are ignored, whereas FromBase64 ignores all trailing characters.
Suggested change to match FromBase64:
- 1. If _length_ modulo 2 is not 0, throw a *SyntaxError* exception.+ 1. If _length_ / 2 < _maxLength_ and _length_ modulo 2 is not 0, throw a *SyntaxError* exception.