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

utils.isEmptyModel.ts Maven / Gradle / Ivy

The newest version!
import isEmpty from 'lodash/isEmpty'
import isNil from 'lodash/isNil'
import every from 'lodash/every'

export function isEmptyModel(model: Record | undefined | object): boolean {
    return isEmpty(model) || every(model, value => value === '' || isNil(value))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy