fix: resolved lint errors for hasDefinedProperty

part of the protobuf utils
pull/2971/head
William Grant 2 years ago
parent 6f78de0ed3
commit 02f1645226

@ -6,8 +6,11 @@
* @param property - The property you want make sure is not undefined
* @returns true if the property is defined or false if undefined or using a type-specific default value
*/
function hasDefinedProperty<A extends {}, B extends PropertyKey & keyof A>(object: A, property: B) {
return object.hasOwnProperty(property) !== false;
function hasDefinedProperty<A extends object, B extends PropertyKey & keyof A>(
object: A,
property: B
) {
return Object.prototype.hasOwnProperty.call(object, property) !== false;
}
export const ProtobufUtils = {

Loading…
Cancel
Save