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

ducks.api.models.editList.checkPrimaryKey.ts Maven / Gradle / Ivy

The newest version!
import { isNil } from 'lodash'

import { HAVE_NOT_PRIMARY_KEY } from '../const'

export function checkPrimaryKey(
    item: TItem,
    primaryKey: keyof TItem,
) {
    if (isNil(item[primaryKey])) {
        throw new Error(HAVE_NOT_PRIMARY_KEY)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy