lamassu-server/packages/admin-ui/src/utils/nullCheck.js
2025-05-12 10:52:54 +01:00

7 lines
145 B
JavaScript

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