ekms 9.6.3-beta.11 → 9.6.3-beta.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/articles.js +1 -2
- package/common/colors.instance.json +28 -0
- package/common/concept.js +1 -1
- package/common/conjunction.js +2 -4
- package/common/crew.instance.json +120 -36
- package/common/dates.instance.json +84 -0
- package/common/drone.instance.json +7467 -377
- package/common/drone.js +103 -29
- package/common/drone.test.json +117044 -28465
- package/common/drone_v1.instance.json +343 -0
- package/common/edible.instance.json +56 -0
- package/common/fastfood.instance.json +360 -108
- package/common/pipboy.instance.json +56 -0
- package/common/reports.instance.json +2 -2
- package/common/stm.js +13 -0
- package/common/time.instance.json +7551 -907
- package/common/time.js +3 -1
- package/common/time.test.json +9914 -0
- package/common/wp.instance.json +56 -0
- package/package.json +2 -2
package/common/time.js
CHANGED
|
@@ -54,12 +54,14 @@ class API {
|
|
|
54
54
|
|
|
55
55
|
const template = {
|
|
56
56
|
configs: [
|
|
57
|
-
"years hours minutes and seconds are units of time",
|
|
57
|
+
"years hours minutes milliseconds and seconds are units of time",
|
|
58
58
|
"hours = minutes / 60",
|
|
59
59
|
"minutes = hours * 60",
|
|
60
60
|
"seconds = minutes * 60",
|
|
61
61
|
"hours = seconds / 3600",
|
|
62
62
|
"seconds = hours * 3600",
|
|
63
|
+
"milliseconds = seconds * 1000",
|
|
64
|
+
"seconds = milliseconds / 1000",
|
|
63
65
|
"minutes = seconds / 60",
|
|
64
66
|
"day = hours / 24",
|
|
65
67
|
"hours = days * 24",
|