Files
30-seconds-of-code/test/isUndefined/isUndefined.js
2018-01-17 13:40:40 -05:00

2 lines
75 B
JavaScript

const isUndefined = val => val === undefined;
module.exports = isUndefined