losstime

1.1.2 • Public • Published

losstime

Calculate how long a time stamp has passed.

Instalation

npm i losstime

Syntax

losstime(timestamp, config)
Parameter Description
timestamp · A timestamp and type is Number.
· Not required.
· Default value: Date.now()
config · A configure and type is Object.
· Not required.
· Default value:
{ day: '天', hour: '小时', minutes: '分钟', before: '之前', justNow: '刚刚' }

Example

import { losstime } from 'losstime';

losstime() // "刚刚";

var oneMinutes = 60 * 1000;
var oneHour = 1 * 60 * oneMinutes;
var oneDay = 24 * oneHour;

losstime(Date.now() - oneDay) // "1天之前"
losstime(Date.now() - (oneDay + oneHour)) // "1天1小时之前"
losstime(Date.now() - (oneDay + oneHour + oneMinutes)) // "1天1小时1分钟之前"

Tips

Currently only Chinese is supported.

But you can internationalize it by passing in config parameters.

Readme

Keywords

Package Sidebar

Install

npm i losstime

Weekly Downloads

1

Version

1.1.2

License

ISC

Unpacked Size

3.08 kB

Total Files

4

Last publish

Collaborators

  • viavacos