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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 300x 300x 113x 113x 168x 25x 143x 6x 137x 71x 6x 65x 66x 47x 6x 41x 113x 300x | /*
* Copyright 2021 Harness Inc. All rights reserved.
* Use of this source code is governed by the PolyForm Shield 1.0.0 license
* that can be found in the licenses directory at the root of this repository, also available at
* https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt.
*/
import type { YamlSanityConfig } from '@common/interfaces/YAMLBuilderProps'
/**
* @description Give a json, removes the following at all nested levels:
empty strings
empty objects(with no keys)
empty arrays
* @param obj
*/
export const DEFAULT_SANITY_CONFIG = {
removeEmptyString: true,
removeEmptyArray: true,
removeEmptyObject: true
}
const sanitize = (obj: Record<string, any>, sanityConfig?: YamlSanityConfig): Record<string, any> => {
const { removeEmptyString, removeEmptyArray, removeEmptyObject } = {
...DEFAULT_SANITY_CONFIG,
...sanityConfig
}
for (const key in obj) {
if (obj[key] === null || obj[key] === undefined) {
delete obj[key]
} else if (removeEmptyString && obj[key] === '') {
delete obj[key]
} else if (Object.prototype.toString.call(obj[key]) === '[object Object]') {
if (removeEmptyObject && Object.keys(obj[key]).length === 0) {
delete obj[key]
} else {
sanitize(obj[key], sanityConfig)
}
} else if (Array.isArray(obj[key])) {
if (removeEmptyArray && obj[key].length == 0) {
delete obj[key]
} else {
sanitize(obj[key], sanityConfig)
}
}
}
return obj
}
export { sanitize }
|