You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
234 B
JavaScript

"use strict";
const timer = require(".");
let someTimer = timer({
timeout: 500,
onFire: () => {
console.log("Fired 1");
},
onCancel: () => {
console.log("Cancelled 1");
}
});
someTimer.start();
/*
After 500ms:
Fired 1
*/