humanize-duration
Advanced tools
Comparing version 3.27.2 to 3.27.3
@@ -0,1 +1,5 @@ | ||
# 3.27.3 / 2022-08-26 | ||
- fix: ordering for Swahili (see [#207](https://github.com/EvanHahn/HumanizeDuration.js/issues/207)) | ||
# 3.27.2 / 2022-05-26 | ||
@@ -2,0 +6,0 @@ |
@@ -1313,3 +1313,4 @@ // HumanizeDuration.js - https://git.io/j0HgmQ | ||
ms: "milisekunde", | ||
decimal: "." | ||
decimal: ".", | ||
_numberFirst: true | ||
}, | ||
@@ -1582,2 +1583,5 @@ tr: { | ||
if (dictionary._numberFirst) { | ||
return word + options.spacer + countStr; | ||
} | ||
return countStr + options.spacer + word; | ||
@@ -1584,0 +1588,0 @@ } |
@@ -36,3 +36,3 @@ { | ||
], | ||
"version": "3.27.2", | ||
"version": "3.27.3", | ||
"description": "Convert millisecond durations to English and many other languages.", | ||
@@ -48,8 +48,8 @@ "homepage": "https://github.com/EvanHahn/HumanizeDuration.js", | ||
"devDependencies": { | ||
"csv-parse": "^5.0.3", | ||
"eslint": "^8.7.0", | ||
"eslint-plugin-mocha": "^9.0.0", | ||
"csv-parse": "^5.3.0", | ||
"eslint": "^8.22.0", | ||
"eslint-plugin-mocha": "^10.1.0", | ||
"mocha": "^10.0.0", | ||
"ms": "^2.1.3", | ||
"prettier": "^2.5.1" | ||
"prettier": "^2.7.1" | ||
}, | ||
@@ -56,0 +56,0 @@ "keywords": [ |
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
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
65927
1664