Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

humanize-duration

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

humanize-duration - npm Package Compare versions

Comparing version 3.18.0 to 3.19.0

5

HISTORY.md

@@ -0,1 +1,6 @@

3.19.0 / 2019-07-08
===================
* new: Estonian support
3.18.0 / 2019-03-07

@@ -2,0 +7,0 @@ ===================

@@ -112,2 +112,13 @@ // HumanizeDuration.js - https://git.io/j0HgmQ

},
et: {
y: function (c) { return 'aasta' + (c === 1 ? '' : 't') },
mo: function (c) { return 'kuu' + (c === 1 ? '' : 'd') },
w: function (c) { return 'nädal' + (c === 1 ? '' : 'at') },
d: function (c) { return 'päev' + (c === 1 ? '' : 'a') },
h: function (c) { return 'tund' + (c === 1 ? '' : 'i') },
m: function (c) { return 'minut' + (c === 1 ? '' : 'it') },
s: function (c) { return 'sekund' + (c === 1 ? '' : 'it') },
ms: function (c) { return 'millisekund' + (c === 1 ? '' : 'it') },
decimal: ','
},
fa: {

@@ -114,0 +125,0 @@ y: 'سال',

15

package.json

@@ -29,3 +29,3 @@ {

],
"version": "3.18.0",
"version": "3.19.0",
"description": "Convert millisecond durations to English and many other languages.",

@@ -40,5 +40,5 @@ "homepage": "https://github.com/EvanHahn/HumanizeDuration.js",

"check-ecmascript-version-compatibility": "^0.1.1",
"csv-parse": "^4.3.1",
"mocha": "^5.2.0",
"ms": "^2.1.1",
"csv-parse": "^4.4.3",
"mocha": "^6.1.4",
"ms": "^2.1.2",
"standard": "^12.0.1"

@@ -63,2 +63,9 @@ },

"license": "Unlicense",
"files": [
"/README.md",
"/LICENSE.txt",
"/CONTRIBUTING.md",
"/HISTORY.md",
"/humanize-duration.js"
],
"standard": {

@@ -65,0 +72,0 @@ "globals": [

@@ -236,2 +236,3 @@ Humanize Duration

| English | `en` |
| Estonian | `et` |
| Farsi/Persian | `fa` |

@@ -302,2 +303,3 @@ | Finnish | `fi` |

* Malikoun for Lao support
* [Villu Orav](https://github.com/villu164) for Estonian support

@@ -304,0 +306,0 @@ Licensed under the permissive [Unlicense](https://unlicense.org/). Enjoy!

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc