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
An object with numeric keys is encoded in the same way as an array by jQuery.param(). jQuery.param() will, like JSON.stringify(), ignore any string keys on an array object when serializing. However, this package, jquery-deparam assumes that an object is an array if the first key name it encounters is numeric.
jquery-param treats things as arrays sometims when it shouldn’t. As a result, the transform becomes lossy.
The text was updated successfully, but these errors were encountered:
An object with numeric keys is encoded in the same way as an array by
jQuery.param()
.jQuery.param()
will, likeJSON.stringify()
, ignore any string keys on an array object when serializing. However, this package, jquery-deparam assumes that an object is an array if the first key name it encounters is numeric.jquery-param treats things as arrays sometims when it shouldn’t. As a result, the transform becomes lossy.
The text was updated successfully, but these errors were encountered: