1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 'use strict';
- class Timer {
- constructor(callback, delay, paused) {
- this.callback = callback;
- this.timerId = undefined;
- this.start = undefined;
- this.remaining = delay * 1000;
- this.timeWhenPaused = 0;
- this.timePaused = Date.now();
- if (!paused) {
- this.resume();
- }
- }
- pause() {
- clearTimeout(this.timerId);
- this.remaining -= Date.now() - this.start;
- this.timePaused = Date.now();
- }
- ifNotPaused() {
- if (!this.paused) {
- this.resume();
- }
- }
- resume() {
- this.start = Date.now();
- clearTimeout(this.timerId);
- this.timerId = setTimeout(this.callback, this.remaining);
- this.timeWhenPaused = Date.now() - this.timePaused;
- }
- resetTimeWhenPaused() {
- this.timeWhenPaused = 0;
- }
- timeWhenPaused() {
- return this.timeWhenPaused;
- }
- }
- function getRandomNumber(min, max) {
- return Math.floor(Math.random() * (max - min + 1)) + min;
- }
- module.exports = {
- io: null, // Socket.io
- db: null, // Database
- htmlEntities: str => {
- return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
- },
- getRandomNumber,
- generateRandomString: len => {
- let chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split("");
- let result = [];
- for (let i = 0; i < len; i++) {
- result.push(chars[getRandomNumber(0, chars.length - 1)]);
- }
- return result.join("");
- },
- Timer
- };
|