Generate Spotify-style timestamps like '5m' and '3h'. Always selects the most minimalist approximation of the time (ie. largest unique unit of time).
npm install spotify-style-timesspotify-style-times
===================
Generate Spotify-style timestamps like '5m' and '3h'. Always selects the most minimalist approximation of the time (ie. largest unique unit of time). Supports timing down to the millsecond.
yarn install spotify-style-times``javascript
import spotifyStyleTime from 'spotify-style-times';
import moment from 'moment';
let exampleDate = moment().subtract(2, 'm');
spotifyStyleTime(exampleDate); // 2m
``