We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Equals is case sensitive. Can we make this case invariant?
it('test guid library', () => { const lowerCaseGuid: Guid = Guid.parse('00000001-0001-5365-7276-70726f496e63'); const upperCaseGuid: Guid = Guid.parse('00000001-0001-5365-7276-70726F496E63'); const areEqual = lowerCaseGuid.equals(upperCaseGuid); expect(areEqual).toBe(true); });
The unit test above is failing.
The text was updated successfully, but these errors were encountered:
made comparisons case insensitive
06164d8
this addresses snico-dev#5
Please complete this, it is quite useful!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The Equals is case sensitive. Can we make this case invariant?
The unit test above is failing.
The text was updated successfully, but these errors were encountered: