3 lines
80 B
JavaScript
3 lines
80 B
JavaScript
|
export const isDefined = val => {
|
||
|
return val !== null && val !== undefined;
|
||
|
};
|