Comparing version 1.6.38 to 1.6.39
@@ -64,4 +64,4 @@ import { Intl } from '../../Intl'; | ||
timeval = 0; | ||
var dday = Math.floor(timeval / 86400); | ||
timeval -= dday * 86400; | ||
var dday = Math.floor(timeval / secondsInDay); | ||
timeval -= dday * secondsInDay; | ||
var dhour = Math.floor(timeval / 3600); | ||
@@ -68,0 +68,0 @@ timeval -= dhour * 3600; |
{ | ||
"name": "onix-core", | ||
"version": "1.6.38", | ||
"version": "1.6.39", | ||
"description": "Onix library core", | ||
@@ -12,2 +12,3 @@ "main": "dist/index.js", | ||
"stats": "webpack --profile --json > stats.json", | ||
"statsp": "webpack --profile --json --mode=production > stats.json", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
@@ -14,0 +15,0 @@ }, |
@@ -69,3 +69,3 @@ import { Intl } from '../../Intl'; | ||
if (timeval < 0) timeval = 0; | ||
var dday = Math.floor(timeval / 86400); timeval -= dday * 86400; | ||
var dday = Math.floor(timeval / secondsInDay); timeval -= dday * secondsInDay; | ||
var dhour = Math.floor(timeval / 3600); timeval -= dhour * 3600; | ||
@@ -72,0 +72,0 @@ var dmin = Math.floor(timeval / 60); timeval -= dmin * 60; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
93030
119
1712