Ensure deserialized Array is ordered by index

Object.keys does not guarantee any particular order, which could result
in an out-of-order array if we did not sort said keys.
This commit is contained in:
Ryland Herrick 2017-11-03 16:50:52 -05:00
parent 7de5743e3b
commit 2f22c2c7cb

View File

@ -50,7 +50,9 @@ ArrayType.serialize = value => value;
ArrayType.deserialize = value => {
if (Array.isArray(value)) return value;
return Object.keys(value).reduce((array, key) => [...array, value[key]], []);
return Object.keys(value)
.sort()
.reduce((array, key) => [...array, value[key]], []);
};
export default ArrayType;