mirror of
https://github.com/debug-js/debug.git
synced 2026-01-18 16:12:38 +00:00
9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
|
|
var debug = require('../')('worker');
|
|
|
|
function work() {
|
|
debug('doing some work');
|
|
setTimeout(work, Math.random() * 1000);
|
|
}
|
|
|
|
work(); |