greena13/react-hotkeys

View on GitHub
src/utils/object/hasKey.js

Summary

Maintainability
A
0 mins
Test Coverage
function hasKey(object, key) {
  return object.hasOwnProperty(key);
}

export default hasKey;