HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/local/lib/node_modules/pm2/node_modules/@pm2/io/build/main/utils/
Upload File :
Current File : //proc/self/root/usr/local/lib/node_modules/pm2/node_modules/@pm2/io/build/main/utils/units.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const MILLISECONDS = 1;
const SECONDS = 1000 * MILLISECONDS;
const MINUTES = 60 * SECONDS;
const HOURS = 60 * MINUTES;
exports.default = {
    NANOSECONDS: 1 / (1000 * 1000),
    MICROSECONDS: 1 / 1000,
    MILLISECONDS: MILLISECONDS,
    SECONDS: SECONDS,
    MINUTES: MINUTES,
    HOURS: HOURS,
    DAYS: 24 * HOURS
};