This commit is contained in:
j 2014-05-14 20:46:31 +02:00
commit 0e6b9533b4
12 changed files with 521 additions and 154 deletions

View file

@ -73,8 +73,8 @@
? Ox['format' + Ox.toTitleCase(key.format.type)].apply(
this, [value].concat(key.format.args || [])
)
: Ox.isArray(key.type) ? value.join(', ')
: value;
: Ox.isArray(key.type) ? (value || []).join(', ')
: (value || '');
}
});
})