bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/methods/getCurrentTime.js

8 lines
108 B
JavaScript
Raw Normal View History

2023-05-11 04:03:20 +08:00
export default function getCurrentTime() {
if (this.userId) {
return Date().now();
}
return 0;
}