This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
m/workerTimer.js

6 lines
126 B
JavaScript

self.onmessage = function(event)
{
setTimeout(function(){
postMessage({args:event.data.args});
},event.data.delay);
}