export default function has( object: Parameters[0], key: Parameters[1], ): ReturnType { return Object.prototype.hasOwnProperty.call(object, key) }