Files
30-seconds-of-code/test/isNil/isNil.js

2 lines
78 B
JavaScript

const isNil = val => val === undefined || val === null;
module.exports = isNil