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
Parses a parameter string of the format key1=value1&key2=value2, optionally converting the string values into appropriate value types.
31
+
32
+
If the value types are to be converted, true and false are converted to booleans irrespective of case. Values are converted to numbers if they match the following regex ```/^[-+]?(\d+\.)?\d+(E[-+]?\d+)?$/i```.
33
+
34
+
If you need finer control of value conversions, leave parseValues at false and handle the conversions in your driver code.
0 commit comments