File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
src/svelte/shared/services Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "id" : " vault-explorer" ,
33 "name" : " Vault Explorer" ,
4- "version" : " 1.47.1 " ,
4+ "version" : " 1.47.2 " ,
55 "minAppVersion" : " 1.4.13" ,
66 "description" : " Explore your vault in visual format" ,
77 "author" : " DecafDev" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " obsidian-vault-explorer" ,
3- "version" : " 1.47.1 " ,
3+ "version" : " 1.47.2 " ,
44 "description" : " Explore your vault in visual format" ,
55 "main" : " main.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const getStartOfLastWeekMillis = () => {
5454 * @returns - The date in milliseconds
5555 */
5656export const getTimeMillis = ( date : string ) => {
57- const momentDate = ( moment as any ) ( ) ( date , DATE_FORMATS , true ) ;
57+ const momentDate = ( moment as any ) ( date , DATE_FORMATS , true ) ;
5858
5959 if ( ! momentDate . isValid ( ) ) {
6060 throw new Error ( `Date format not handled: ${ date } ` ) ;
@@ -68,7 +68,7 @@ export const getTimeMillis = (date: string) => {
6868 * @returns - True if the date is supported, false otherwise
6969 */
7070export const isDateSupported = ( date : string ) => {
71- const momentDate = ( moment as any ) ( ) ( date , DATE_FORMATS , true ) ;
71+ const momentDate = ( moment as any ) ( date , DATE_FORMATS , true ) ;
7272 return momentDate . isValid ( ) ;
7373} ;
7474
@@ -78,7 +78,7 @@ export const isDateSupported = (date: string) => {
7878 * @returns - The end of the day in milliseconds
7979 */
8080export const getEndOfDayMillis = ( date : string ) => {
81- const day = ( moment as any ) ( ) ( date ) ;
81+ const day = ( moment as any ) ( date ) ;
8282 day . set ( {
8383 hour : 23 ,
8484 minute : 59 ,
Original file line number Diff line number Diff line change 151151 "1.45.0" : " 1.4.13" ,
152152 "1.46.0" : " 1.4.13" ,
153153 "1.47.0" : " 1.4.13" ,
154- "1.47.1" : " 1.4.13"
154+ "1.47.1" : " 1.4.13" ,
155+ "1.47.2" : " 1.4.13"
155156}
You can’t perform that action at this time.
0 commit comments