-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
Milestone
Description
For now, sanitizing functions will trim the trailing string when the byte length exceeds the max_len.
This behavior may not be preferable in some cases.
Make it possible to choose the behavior of sanitizing when a byte length of the value exceeds max_len and change the default behavior.
Choices of behavior:
KEEP: do nothingTRIM: trim the trailing string (current default)TRIM_NAME: trim the trailing string except for the file extensionERROR: raise an exception (new default)
vinismarques and bramp