An open API service indexing awesome lists of open source software.

https://github.com/tortitast/dimers

Deno timers utility library
https://github.com/tortitast/dimers

deno

Last synced: about 2 months ago
JSON representation

Deno timers utility library

Awesome Lists containing this project

README

          

# Dimers
Deno timers utility library.

## Usage
```ts
import { Timer, Magnitude } from "https://deno.land/x/dimers/mod.ts";

const timer = new Timer(
()=>{
console.log("Hello World!");
})
.add(1, Magnitude.Seconds)
.start();
```