diff --git a/source/Ox/js/Collection.js b/source/Ox/js/Collection.js index 31d5eb12..9718a5a1 100644 --- a/source/Ox/js/Collection.js +++ b/source/Ox/js/Collection.js @@ -564,8 +564,8 @@ Ox.shuffle Randomizes the order of values within a collection 3 > Ox.len(Ox.shuffle({a: 1, b: 2, c: 3})) 3 - > Ox.shuffle('123').length - 3 + > Ox.shuffle('123').split('').sort().join('') + '123' @*/ Ox.shuffle = function(col) { var keys, ret, type = Ox.typeOf(col), values;