# tmarker

> mark sequence time easily.

Latest version **0.0.4** (published 2019-05-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install tmarker
pnpm add tmarker
yarn add tmarker
bun add tmarker
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2019-05-14 |
| First published | 2019-03-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | meixuguang |
| Maintainers | meixg |

## Links

- npm: https://www.npmjs.com/package/tmarker
- Repository: https://github.com/meixg/time-marker
- Homepage: https://github.com/meixg/time-marker#readme
- Issues: https://github.com/meixg/time-marker/issues
- npm.io page: https://npm.io/package/tmarker

## Recent versions

- 0.0.4 (latest) — 2019-05-14
- 0.0.3 — 2019-03-28
- 0.0.2 — 2019-03-28
- 0.0.1 — 2019-03-28

## README

# tmarker

mark sequence time easily.

## quick start

```javascript
import {TimeMarker} from 'tmarker';

const marker = new TimeMarker(['a', 'b', 'c'], data => {
    console.log(data);
});

marker.mark('a');
setTimeout(() => {
    marker.mark('b');
}, 500);
setTimeout(() => {
    marker.mark('c'); // callback get { b: 507, c: 1003 }
}, 1000);
```

---
_Source: https://npm.io/package/tmarker · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
