mirror of
https://github.com/penpot/penpot.git
synced 2026-03-07 02:31:17 +00:00
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
addToLibrary({
|
|
wapi_requestAnimationFrame: function wapi_requestAnimationFrame() {
|
|
return window.requestAnimationFrame(Module._process_animation_frame);
|
|
},
|
|
wapi_cancelAnimationFrame: function wapi_cancelAnimationFrame(frameId) {
|
|
return window.cancelAnimationFrame(frameId);
|
|
}
|
|
});
|