|
|
@ -456,7 +456,7 @@ export const htmlDecode = function(text) { |
|
|
|
export const cjkEncodeDO = function(o) { |
|
|
|
export const cjkEncodeDO = function(o) { |
|
|
|
if (isPlainObject(o)) { |
|
|
|
if (isPlainObject(o)) { |
|
|
|
const result = {}; |
|
|
|
const result = {}; |
|
|
|
each(o, (v, k) => { |
|
|
|
each(o, (k, v) => { |
|
|
|
if (!(typeof v === "string")) { |
|
|
|
if (!(typeof v === "string")) { |
|
|
|
v = jsonEncode(v); |
|
|
|
v = jsonEncode(v); |
|
|
|
} |
|
|
|
} |
|
|
|