minor tweak...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-03-03 20:33:48 +03:00
parent b4a9b1c29c
commit ef1e9188d8

View File

@ -370,7 +370,10 @@ var BaseBrowserPrototype = {
//
// XXX is this the correct way to handle a key???
__value2key__: function(key){
return JSON.stringify(key)
//return JSON.stringify(key)
return key instanceof Array ?
key.join(' ')
: key
},
// Key getter/generator...