Update README.md

This commit is contained in:
Nicco 2019-03-23 19:54:10 +01:00 committed by GitHub
parent 8100b7fbad
commit 7b73034b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -124,6 +124,7 @@ a.humanize() // 'a few minutes'
##### Own rules / i18n
If you want to pass a different humanize function you can.
The order of the array is important. The first match will return, like in a standard server router. The first argument is a function that takes the duration and returns a boolean. The second takes also matched duration and returns a string for the user.
###### Example
@ -140,4 +141,4 @@ a.subtract(1, 'day')
a.humanize(humanizer) // '1 day'
a.subtract(12, 'hours')
a.humanize(humanizer) // 'catch all, below 1 day'
```
```