Added explanation of simulating clearTimeout function.

main 2.7.2
zboris12 2024-08-19 21:54:15 +09:00
parent 9706bfe31a
commit e5372e2652
1 changed files with 4 additions and 0 deletions

View File

@ -68,6 +68,10 @@ function setTimeout(func, sleep){
Utilities.sleep(sleep);
func();
}
// Simulate clearTimeout function for pdf-fontkit
function clearTimeout(timeoutID){
// Do nothing
}
// Simulate window for node-forge
var window = globalThis;
// Load pdf-lib