cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/hackernews/lib/time-ago.js

12lines · modecode

1import ms from 'ms'
2
3const map = {
4 s: 'seconds',
5 ms: 'milliseconds',
6 m: 'minutes',
7 h: 'hours',
8 d: 'days',
9}
10
11export default (date) =>
12 date ? ms(new Date() - date).replace(/[a-z]+/, (str) => ' ' + map[str]) : ''
13