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
Looks like when a uuid is received in a request as a key, funny stuff happens sometimes.
This is what is expected of it:
000_000_aaa_000 => 000-000-aaa-000
However, it sometimes does stuff like:
000_000_aaa_000 => 000-000-aAa-000 000_000_aaa_000 => 000-000aaa000
000_000_aaa_000 => 000-000-aAa-000
000_000_aaa_000 => 000-000aaa000
The text was updated successfully, but these errors were encountered:
the same
Sorry, something went wrong.
@everythinginjs I had to use this regex match to get UUID's to be preserved for us
const options = { preservedKeys: (input: string) => { return /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}/i.test( input, ); }, };
No branches or pull requests
Looks like when a uuid is received in a request as a key, funny stuff happens sometimes.
This is what is expected of it:
000_000_aaa_000 => 000-000-aaa-000
However, it sometimes does stuff like:
000_000_aaa_000 => 000-000-aAa-000
000_000_aaa_000 => 000-000aaa000
The text was updated successfully, but these errors were encountered: