lamassu-server/new-lamassu-admin/src/utils/nullCheck.js
2020-09-11 14:11:59 +01:00

7 lines
145 B
JavaScript

import * as R from 'ramda'
const ifNotNull = (value, valueIfNotNull) => {
return R.isNil(value) ? '' : valueIfNotNull
}
export { ifNotNull }