src.app.shared.tools.object-utils.ts Maven / Gradle / Ivy
export function addOptionalParam(obj: any, key: string, value: any, excludedValue?: any) {
if (value != null && value !== excludedValue) {
obj[key] = value;
}
}
export function addOptionalArrayParam(obj: any, key: string, value: Array) {
if (value != null && value.length > 0) {
obj[key] = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy