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
It would be nice if there was built-in support for String.prototype.normalize as a built in transformer.
String.prototype.normalize
This would be usefull to avoid weird issues with strings:
const name1 = '\u0041\u006d\u00e9\u006c\u0069\u0065'; const name2 = '\u0041\u006d\u0065\u0301\u006c\u0069\u0065'; console.log(`${name1}, ${name2}`); // "Amélie, Amélie" console.log(name1 === name2); // false console.log(name1.length === name2.length); // false const name1NFC = name1.normalize('NFC'); const name2NFC = name2.normalize('NFC'); console.log(`${name1NFC}, ${name2NFC}`); // "Amélie, Amélie" console.log(name1NFC === name2NFC); // true console.log(name1NFC.length === name2NFC.length); // true
For options and more detail see the MDN documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize
The text was updated successfully, but these errors were encountered:
Great idea! I plan to add this in our next release. Until then, you can use transform:
transform
import * form 'valibot'; const Schema = v.pipe( v.string(), v.transform((input) => input.normalize('NFC')) );
Sorry, something went wrong.
Add normalize action to normalize strings #691
555ae78
v0.36.0 is available
fabian-hiller
No branches or pull requests
It would be nice if there was built-in support for
String.prototype.normalize
as a built in transformer.This would be usefull to avoid weird issues with strings:
For options and more detail see the MDN documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize
The text was updated successfully, but these errors were encountered: