diff --git a/src/main.ts b/src/main.ts index 17c5f2e..7bf235f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -160,7 +160,7 @@ function getDefaultOptions(): RequiredByValueExcept, key: keyof fontRangeOptionI, alterValue: ValueOf) { - return options.hasOwnProperty(key) + return Object.prototype.hasOwnProperty.call(options, key) ? options[key] : alterValue; }