UNPKG

@writ/utils

Version:
4 lines (3 loc) 141 B
export default function has(obj, key) { return obj == null || key == null ? false : Object.prototype.hasOwnProperty.call(obj, key); }