Seldszar / timide

Yet another resumable timer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timide

Yet another resumable timer

Table of Contents

Install

$ npm install timide

Usage

const {Timer} = require('timide');

const timer = new Timer({
  // The initial state (default: `[false, 0, 0]`)
  state: [false, 1598126121368, -20000],
});

timer.on('state', (value) => {
  // Emitted when the state changes
});

// Starts the timer
timer.start();

// Stops the timer
timer.stop();

// Starts the timer including the missed time if stopped
timer.start(true);

// Updates the timer time
timer.seek(20000);

// Resets the timer
timer.reset();

API

See the declaration file.

Author

Alexandre Breteau - @0xSeldszar

License

MIT © Alexandre Breteau

About

Yet another resumable timer

License:MIT License


Languages

Language:JavaScript 96.1%Language:Shell 3.9%