+ 1 fixme
This commit is contained in:
parent
1c4caa4965
commit
9a7e86dceb
1 changed files with 1 additions and 0 deletions
|
@ -374,6 +374,7 @@ Ox.merge <f> Merges an array with one or more other arrays
|
||||||
> Ox.merge(1, [2, 3, 2], 1)
|
> Ox.merge(1, [2, 3, 2], 1)
|
||||||
[1, 2, 3, 2, 1]
|
[1, 2, 3, 2, 1]
|
||||||
@*/
|
@*/
|
||||||
|
// FIXME: [].concat exists!
|
||||||
Ox.merge = function(arr) {
|
Ox.merge = function(arr) {
|
||||||
arr = Ox.makeArray(arr);
|
arr = Ox.makeArray(arr);
|
||||||
Ox.slice(arguments, 1).forEach(function(arg) {
|
Ox.slice(arguments, 1).forEach(function(arg) {
|
||||||
|
|
Loading…
Reference in a new issue