summaryrefslogtreecommitdiff
path: root/src/node_modules/es-abstract/helpers/timeConstants.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_modules/es-abstract/helpers/timeConstants.js')
-rw-r--r--src/node_modules/es-abstract/helpers/timeConstants.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/node_modules/es-abstract/helpers/timeConstants.js b/src/node_modules/es-abstract/helpers/timeConstants.js
new file mode 100644
index 0000000..c275b40
--- /dev/null
+++ b/src/node_modules/es-abstract/helpers/timeConstants.js
@@ -0,0 +1,19 @@
+'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
+};