Skip to content

Commit

Permalink
fix: hotkey.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamiell committed Nov 30, 2023
1 parent 744fb28 commit 5d2f6a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/hotkey.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function clickOnFirstLargeButton() {
* If you have to use a radix other than 10, use the vanilla `Number.parseInt` function instead,
* because this function ensures that the string contains no letters.
*/
export function parseIntSafe(string) {
function parseIntSafe(string) {
if (typeof string !== "string") {
return undefined;
}
Expand Down

0 comments on commit 5d2f6a1

Please sign in to comment.