Skip to content

Commit

Permalink
Bump stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvNC committed Oct 26, 2024
1 parent 72a3477 commit 3246650
Show file tree
Hide file tree
Showing 6 changed files with 602 additions and 318 deletions.
1 change: 1 addition & 0 deletions ext/js/core/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ export function deferPromise() {
let resolve;
/** @type {((reason?: import('core').RejectionReason) => void)|undefined} */
let reject;
/** @type {Promise<T>} */
const promise = new Promise((resolve2, reject2) => {
resolve = resolve2;
reject = reject2;
Expand Down
1 change: 1 addition & 0 deletions ext/js/dictionary/dictionary-data-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export function groupKanjiFrequencies(sourceFrequencies) {
export function getGroupedPronunciations(dictionaryEntry) {
const {headwords, pronunciations: termPronunciations} = dictionaryEntry;

/** @type {Set<string>} */
const allTerms = new Set();
const allReadings = new Set();
/** @type {Map<string, string>} */
Expand Down
1 change: 0 additions & 1 deletion ext/js/dom/document-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,6 @@ function computeCssZoomSupported() {
return (
typeof style === 'object' &&
style !== null &&
// @ts-expect-error - zoom is a non-standard property.
typeof style.zoom === 'string'
);
}
Loading

0 comments on commit 3246650

Please sign in to comment.