aboutsummaryrefslogtreecommitdiff
path: root/src/utility.js
diff options
context:
space:
mode:
authorAlon Zakai <azakai@mozilla.com>2011-01-23 18:23:44 -0800
committerAlon Zakai <azakai@mozilla.com>2011-01-23 18:23:44 -0800
commitdf10a98f50d94962596fccdcaaca0cace922e3c6 (patch)
tree8c18116189e7fb7d272075041ffa80157daf1568 /src/utility.js
parent82c8f1f7a5388fc322445ed899801d6ece8ced5a (diff)
minor fixes and optimizations
Diffstat (limited to 'src/utility.js')
-rw-r--r--src/utility.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/utility.js b/src/utility.js
index 6973362d..626f9978 100644
--- a/src/utility.js
+++ b/src/utility.js
@@ -204,7 +204,11 @@ function flatten(x) {
if (typeof x !== 'object') return x;
var ret = [];
for (var i = 0; i < x.length; i++) {
- ret = ret.concat(flatten(x[i]));
+ if (typeof x[i] === 'number') {
+ ret.push(x[i]);
+ } else {
+ ret = ret.concat(flatten(x[i]));
+ }
}
return ret;
}