Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 | /** * Fix multi-valued keys so that those which are strings split by * a backslash are returned as arrays. */ export function fixMultiValueKeys(naturalData, keys = ['ImageType']) { for (const key of keys) { Iif (typeof naturalData[key] === 'string') { naturalData[key] = naturalData[key].split('\\'); } } return naturalData; } |