2 lines
79 B
JavaScript
2 lines
79 B
JavaScript
const isNil = val => val === undefined || val === null;
|
|
module.exports = isNil; |