1.0.4 • Published 10 months ago

@yaireo/relative-time v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Install:

NPM / CDN / Download from this repo

npm i @yaireo/relative-time -S

Usage:

Import:

import RelativeTime from '@yaireo/relative-time'

And use:

```js
const relativeTime = new RelativeTime(); // defaults to OS locale
const relativeTimeSpanish = new RelativeTime({ locale: 'es' }); // set Spanish locale

console.log(   relativeTime.from(new Date('2015'))  )  // "6 years ago"
console.log(   relativeTimeSpanish.from(new Date('2015'))  )  // "hace 6 años"

Live demo