WebReflection / basicHTML

A NodeJS based, standard oriented, HTML implementation.
ISC License
126 stars 10 forks source link

requestAnimationFrame not found #18

Closed ematipico closed 6 years ago

ematipico commented 6 years ago

I am trying to use the library to set up a fake DOM into node but I would need requestAnimationFrame. Would that be possible to integrate?

WebReflection commented 6 years ago

not part of this project goal but you can add it yourself.

global.requestAnimationFrame = process.nextTick.bind(process);

or something similar.