UNPKG

discord-bot-cli

Version:

An easy way to build a command-based discord bot with discord.js.

15 lines (14 loc) 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getTimeLeft = void 0; /** * Return the number of seconds left before the timeout is out. * @param timeout * @internal */ function getTimeLeft(timeout) { return ( // eslint-disable-next-line @typescript-eslint/no-explicit-any (timeout._idleStart + timeout._idleTimeout) / 1000 - process.uptime()); } exports.getTimeLeft = getTimeLeft;