You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Started fixing ReactNative app
This commit is contained in:
35
ReactNativeClient/lib/time-utils.js
Normal file
35
ReactNativeClient/lib/time-utils.js
Normal file
@ -0,0 +1,35 @@
|
||||
import moment from 'moment';
|
||||
|
||||
let time = {
|
||||
|
||||
unix() {
|
||||
return Math.floor((new Date()).getTime() / 1000);
|
||||
},
|
||||
|
||||
unixMs() {
|
||||
return (new Date()).getTime();
|
||||
},
|
||||
|
||||
unixMsToS(ms) {
|
||||
return Math.floor(ms / 1000);
|
||||
},
|
||||
|
||||
unixMsToIso(ms) {
|
||||
return moment.unix(ms / 1000).utc().format('YYYY-MM-DDTHH:mm:ss.SSS') + 'Z';
|
||||
},
|
||||
|
||||
msleep(ms) {
|
||||
return new Promise((resolve, reject) => {
|
||||
setTimeout(() => {
|
||||
resolve();
|
||||
}, ms);
|
||||
});
|
||||
},
|
||||
|
||||
sleep(seconds) {
|
||||
return this.msleep(seconds * 1000);
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export { time };
|
Reference in New Issue
Block a user