minor doc update
This commit is contained in:
parent
da8066dc73
commit
ee5f89ca86
1 changed files with 2 additions and 2 deletions
|
@ -564,8 +564,8 @@ Ox.shuffle <f> Randomizes the order of values within a collection
|
||||||
3
|
3
|
||||||
> Ox.len(Ox.shuffle({a: 1, b: 2, c: 3}))
|
> Ox.len(Ox.shuffle({a: 1, b: 2, c: 3}))
|
||||||
3
|
3
|
||||||
> Ox.shuffle('123').length
|
> Ox.shuffle('123').split('').sort().join('')
|
||||||
3
|
'123'
|
||||||
@*/
|
@*/
|
||||||
Ox.shuffle = function(col) {
|
Ox.shuffle = function(col) {
|
||||||
var keys, ret, type = Ox.typeOf(col), values;
|
var keys, ret, type = Ox.typeOf(col), values;
|
||||||
|
|
Loading…
Add table
Reference in a new issue