view tests/data/timer.js @ 1070:beb61243cf6d

misc: remove usage of BSD sys/queue.h (channel)
author David Demelier <markand@malikania.fr>
date Mon, 12 Jul 2021 21:20:31 +0200
parents 371e1cc2c697
children
line wrap: on
line source

count = 0;

function onLoad()
{
	if (typeof (type) === "undefined")
		throw Error("global timer type not defined");

	t = new Irccd.Timer(type, 50, function () {
		count += 1;
	});

	t.start();
}