cozy-labs/cozy-desktop

View on GitHub
core/utils/time.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @module core/utils/time
 * @flow
 */

const MILLISECONDS = 1
const SECONDS = 1000 * MILLISECONDS
const MINUTES = 60 * SECONDS
const HOURS = 60 * MINUTES

module.exports = {
  MILLISECONDS,
  SECONDS,
  MINUTES,
  HOURS
}