helpers/isDefined.js

3 lines
80 B
JavaScript

export const isDefined = val => {
return val !== null && val !== undefined;
};