Skip to content

Commit

Permalink
Deployed using Blazing fast GitHub Pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Nov 21, 2023
1 parent 2abbf4c commit a975497
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3180,7 +3180,7 @@ declare namespace $ {
declare namespace $.$$ {
class $mol_hotkey extends $.$mol_hotkey {
key(): {
[x: number]: ((event: KeyboardEvent) => void) | undefined;
readonly [x: number]: ((event: KeyboardEvent) => void) | undefined;
readonly backspace?: ((event: KeyboardEvent) => void) | undefined;
readonly tab?: ((event: KeyboardEvent) => void) | undefined;
readonly enter?: ((event: KeyboardEvent) => void) | undefined;
Expand Down
4 changes: 2 additions & 2 deletions node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4158,8 +4158,8 @@ var $;
'sss': (moment) => {
if (moment.second == null)
return '';
const millisecond = Math.floor((moment.second - Math.floor(moment.second)) * 1000);
return String(1000 + millisecond).slice(1);
const millisecond = (moment.second - Math.trunc(moment.second)).toFixed(3);
return millisecond.slice(2);
},
'Z': (moment) => {
const offset = moment.offset;
Expand Down
4 changes: 2 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4150,8 +4150,8 @@ var $;
'sss': (moment) => {
if (moment.second == null)
return '';
const millisecond = Math.floor((moment.second - Math.floor(moment.second)) * 1000);
return String(1000 + millisecond).slice(1);
const millisecond = (moment.second - Math.trunc(moment.second)).toFixed(3);
return millisecond.slice(2);
},
'Z': (moment) => {
const offset = moment.offset;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3079,7 +3079,7 @@ declare namespace $ {
declare namespace $.$$ {
class $mol_hotkey extends $.$mol_hotkey {
key(): {
[x: number]: ((event: KeyboardEvent) => void) | undefined;
readonly [x: number]: ((event: KeyboardEvent) => void) | undefined;
readonly backspace?: ((event: KeyboardEvent) => void) | undefined;
readonly tab?: ((event: KeyboardEvent) => void) | undefined;
readonly enter?: ((event: KeyboardEvent) => void) | undefined;
Expand Down
4 changes: 2 additions & 2 deletions web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3598,8 +3598,8 @@ var $;
'sss': (moment) => {
if (moment.second == null)
return '';
const millisecond = Math.floor((moment.second - Math.floor(moment.second)) * 1000);
return String(1000 + millisecond).slice(1);
const millisecond = (moment.second - Math.trunc(moment.second)).toFixed(3);
return millisecond.slice(2);
},
'Z': (moment) => {
const offset = moment.offset;
Expand Down
2 changes: 1 addition & 1 deletion web.test.js.map

Large diffs are not rendered by default.

0 comments on commit a975497

Please sign in to comment.