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)
}
}