All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.shared.tools.object-utils.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version


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