Skip to content

Instantly share code, notes, and snippets.

@vhpoet
Last active September 15, 2016 18:38
Show Gist options
  • Save vhpoet/fe1539e6b0d8bf00e76582c3b0d6a017 to your computer and use it in GitHub Desktop.
Save vhpoet/fe1539e6b0d8bf00e76582c3b0d6a017 to your computer and use it in GitHub Desktop.
TimeAgo "a few seconds ago" formatter
timeAgoFormatter = (value, unit, suffix) => {
if (unit !== 'second') {
return [value, unit + (value !== 1 ? 's' : ''), suffix].join(' ')
}
if (suffix === 'ago') {
return 'a few seconds ago'
}
if (suffix === 'from now') {
return 'in a few seconds'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment