mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Fix error trim is not a function from commit bac5c2e83b
This commit is contained in:
@ -121,7 +121,7 @@ var et2_arrayMgr = /** @class */ (function () {
|
||||
* @return {string[]}
|
||||
*/
|
||||
et2_arrayMgr.prototype.explodeKey = function (_key) {
|
||||
if (!_key || _key.trim() === "")
|
||||
if (!_key || typeof _key == 'string' && _key.trim() === "")
|
||||
return [];
|
||||
// Parse the given key by removing the "]"-chars and splitting at "["
|
||||
var indexes = [_key];
|
||||
|
Reference in New Issue
Block a user