From 9a7e86dceb808739fce0b128fee331c4a8c2ef50 Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 23 May 2012 09:20:06 +0200 Subject: [PATCH] + 1 fixme --- source/Ox/js/Array.js | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Ox/js/Array.js b/source/Ox/js/Array.js index c3325f1c..1c96dfc4 100644 --- a/source/Ox/js/Array.js +++ b/source/Ox/js/Array.js @@ -374,6 +374,7 @@ Ox.merge Merges an array with one or more other arrays > Ox.merge(1, [2, 3, 2], 1) [1, 2, 3, 2, 1] @*/ +// FIXME: [].concat exists! Ox.merge = function(arr) { arr = Ox.makeArray(arr); Ox.slice(arguments, 1).forEach(function(arg) {