UNPKG
tlvince-react-timeago
Version:
latest (3.3.1)
3.3.1
A simple Time-Ago component for ReactJs
github.com/nmn/react-timeago
naman34/react-timeago
tlvince-react-timeago
/
lib
/
defaultFormatter.js.flow
9 lines
(7 loc)
•
193 B
Flow
View Raw
1
2
3
4
5
6
7
8
9
// @flow
export
default
function
defaultFormatter
(
value
:
number
,
unit
:
string
,
suffix
:
string
):
string
{
if
(value !==
1
) { unit +=
's'
}
return
value +
' '
+ unit +
' '
+ suffix }