File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1- import ' ./process-polyfill' ;
1+ import " ./process-polyfill" ;
22import { FileOrder } from "./fileOrder" ;
33
44export default FileOrder ;
Original file line number Diff line number Diff line change 11declare global {
2- interface Window {
3- process ?: any ;
4- }
2+ interface Window {
3+ process ?: any ;
4+ }
55}
66
77// Simple process polyfill for Obsidian mobile
88window . process = {
9- env : {
10- NODE_ENV : ' production'
11- } ,
12- // Add any other process properties your code might need
13- platform : ' android' , // or 'ios' depending on platform
14- version : '' ,
15- nextTick : ( fn : Function ) => setTimeout ( fn , 0 )
9+ env : {
10+ NODE_ENV : " production" ,
11+ } ,
12+ // Add any other process properties your code might need
13+ platform : " android" , // or 'ios' depending on platform
14+ version : "" ,
15+ nextTick : ( fn : Function ) => setTimeout ( fn , 0 ) ,
1616} ;
1717
18- export { } ;
18+ export { } ;
You can’t perform that action at this time.
0 commit comments