agstopwatch
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

AGStopwatch

AGStopwatch is built using TypeScript. It's just a basic stopwatch - you can start it, stop it, restart it, and check how much time has elapsed.

Install using:

npm install agstopwatch

Use it in your code using:

Typescript:

import Stopwatch = require("agstopwatch");

JavaScript:

var Stopwatch = require("agstopwatch");

Usage

Stopwatch

This is a constructor function. You MUST call it with the new keyword:

var sw = new Stopwatch();

Stopwatch.start()

Starts the stopwatch.

Stopwatch.stop()

Stops the stopwatch.

Stopwatch.restart()

Clears current start time and restarts the stopwatch.

Stopwatch.reset()

Clears current start and end time and stops the stopwatch.

Stopwatch.startTime

The time the stopwatch was started (in ms).

Stopwatch.stopTime

The time the stopwatch was stopped (in ms).

Stopwatch.elapsed

The time elapsed (in ms).

Stopwatch.running

Returns true if the stopwatch is running.

Readme

Keywords

none

Package Sidebar

Install

npm i agstopwatch

Weekly Downloads

826

Version

1.1.0

License

BSD

Last publish

Collaborators

  • andrewgaspar