Skip to content

Commit

Permalink
Added explanation of simulating clearTimeout function.
Browse files Browse the repository at this point in the history
  • Loading branch information
zboris12 committed Aug 19, 2024
1 parent 9706bfe commit e5372e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e5372e2

Please sign in to comment.