We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3161db7 commit 836dd23Copy full SHA for 836dd23
packages/ckeditor5/src/integration.js
@@ -44,7 +44,7 @@ export default class CKEditor5Integration extends IntegrationModel {
44
if (languageObject != null) {
45
if (typeof languageObject === "object") {
46
// eslint-disable-next-line no-prototype-builtins
47
- if (languageObject.hasOwnProperty("ui")) {
+ if (Object.prototype.hasOwnProperty.call(languageObject, "ui")) {
48
return languageObject.ui;
49
}
50
return languageObject;
0 commit comments