UNPKG

226 BJavaScriptView Raw
1/**
2 * Check if an object contains a key.
3 * @param obj The object to check.
4 * @param key The key to check for.
5*/
6export default function hasKey(object, key) {
7 return Object.prototype.hasOwnProperty.call(object, key);
8}