summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/helpers/timeConstants.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/helpers/timeConstants.js')
-rw-r--r--node_modules/es-abstract/helpers/timeConstants.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/es-abstract/helpers/timeConstants.js b/node_modules/es-abstract/helpers/timeConstants.js
deleted file mode 100644
index c275b40..0000000
--- a/node_modules/es-abstract/helpers/timeConstants.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict';
-
-var HoursPerDay = 24;
-var MinutesPerHour = 60;
-var SecondsPerMinute = 60;
-var msPerSecond = 1e3;
-var msPerMinute = msPerSecond * SecondsPerMinute;
-var msPerHour = msPerMinute * MinutesPerHour;
-var msPerDay = 86400000;
-
-module.exports = {
- HoursPerDay: HoursPerDay,
- MinutesPerHour: MinutesPerHour,
- SecondsPerMinute: SecondsPerMinute,
- msPerSecond: msPerSecond,
- msPerMinute: msPerMinute,
- msPerHour: msPerHour,
- msPerDay: msPerDay
-};