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 5651923 commit 495b97bCopy full SHA for 495b97b
components/mjs/startup/init.js
@@ -1,4 +1,4 @@
1
-import './hasown.js';
+import './hasown.js'; // Can be removed with ES2024 implementation of Object.hasown
2
import './lib/startup.js';
3
4
import {combineDefaults} from '#js/components/global.js';
ts/components/startup.ts
@@ -620,7 +620,7 @@ if (typeof MathJax._.startup === 'undefined') {
620
typeset: true,
621
ready: Startup.defaultReady.bind(Startup),
622
pageReady: Startup.defaultPageReady.bind(Startup),
623
- polyfillHasOwn: true,
+ polyfillHasOwn: true, // Can be removed with ES2024 implementation of Object.hasown
624
});
625
combineWithMathJax({
626
startup: Startup,
0 commit comments