|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
689 bytes
|
| Line | |
|---|
| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
|---|
| 4 | value: true
|
|---|
| 5 | });
|
|---|
| 6 | exports.durationYear = exports.durationWeek = exports.durationSecond = exports.durationMonth = exports.durationMinute = exports.durationHour = exports.durationDay = void 0;
|
|---|
| 7 | const durationSecond = exports.durationSecond = 1000;
|
|---|
| 8 | const durationMinute = exports.durationMinute = durationSecond * 60;
|
|---|
| 9 | const durationHour = exports.durationHour = durationMinute * 60;
|
|---|
| 10 | const durationDay = exports.durationDay = durationHour * 24;
|
|---|
| 11 | const durationWeek = exports.durationWeek = durationDay * 7;
|
|---|
| 12 | const durationMonth = exports.durationMonth = durationDay * 30;
|
|---|
| 13 | const durationYear = exports.durationYear = durationDay * 365; |
|---|
Note:
See
TracBrowser
for help on using the repository browser.