-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPUB: Honor writing-mode set in CSS, not just metadata
And refactor CSS rewriting code.
- Loading branch information
1 parent
be81e76
commit 19ece96
Showing
4 changed files
with
80 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export function mode<T>(iter: Iterable<T>): T | undefined { | ||
let maxCount = 0; | ||
let maxValue: T | undefined; | ||
let map = new Map<T, number>(); | ||
for (let value of iter) { | ||
let count = map.get(value) ?? 0; | ||
map.set(value, ++count); | ||
if (count > maxCount) { | ||
maxCount = count; | ||
maxValue = value; | ||
} | ||
} | ||
return maxValue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters