greena13/react-hotkeys

View on GitHub
src/utils/isUndefined.js

Summary

Maintainability
A
0 mins
Test Coverage
function isUndefined(object) {
  return typeof object === 'undefined';
}

export default isUndefined;