From 225fddbab12a7ae06a4702726317c81cab937b16 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Thu, 19 Sep 2024 11:28:20 -0700 Subject: [PATCH] typo --- src/object.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object.js b/src/object.js index 59835fe34..21604a42b 100644 --- a/src/object.js +++ b/src/object.js @@ -235,7 +235,7 @@ ReflectionObject.prototype.setParsedOption = function setParsedOption(name, valu if (isFeature) { - var features = parsedOptions.find(x => {return Object.prototypehasOwnProperty(x, "features");}); + var features = parsedOptions.find(x => {return Object.prototype.hasOwnProperty(x, "features");}); this._features = features.features || {}; } return this;