UNPKG
react-timeago
Version:
latest (8.2.0)
next (3.0.0-beta.3)
8.2.0
8.1.0
8.0.0
7.2.0
7.1.0
7.0.0
6.2.1
6.2.0
6.1.1
6.1.0
6.0.0
5.3.0
5.2.1
5.2.0
5.1.1
5.1.0
4.4.0
4.3.0
4.2.0
4.1.9
4.1.8
4.1.4
4.1.0
4.0.0
3.4.3
3.4.2
3.4.1
3.4.0
3.3.0
3.2.1
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.0
3.0.0-beta.3
3.0.0-beta.2
2.2.1
2.2.0
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
0.0.1
A simple Time-Ago component for ReactJs
github.com/nmn/react-timeago
naman34/react-timeago
react-timeago
/
es6
/
defaultFormatter.js
5 lines
•
182 B
JavaScript
View Raw
1
2
3
4
5
const
defaultFormatter
= (
value, _unit, suffix
) => {
const
unit = value !==
1
? _unit +
's'
: _unit;
return
value +
' '
+ unit +
' '
+ suffix; };
export
default
defaultFormatter;