mirror of
https://github.com/rjanicek/vice.js.git
synced 2025-06-18 08:35:37 -04:00
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
mergeInto(LibraryManager.library, {
|
|
vice_blocking_delay: function(delayMS) {
|
|
var target = new Date().getTime() + delayMS;
|
|
while (new Date() < target);
|
|
}
|
|
}); |