+ 1 fixme

This commit is contained in:
rolux 2012-05-23 09:20:06 +02:00
parent 1c4caa4965
commit 9a7e86dceb

View file

@ -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) {