Joe Pea

Results 1897 comments of Joe Pea

@chadlop Hello. I just landed at this repo. Are you saying that this lib doesn't actually render SVGs yet?

Is this because apple silicon is not supported yet?

See this for a solution and workaround: - https://github.com/abbr/deasync/issues/181

Confirmed. See description in https://github.com/nodejs/node/issues/35510#issuecomment-728428161 I made a reproduction (two examples, one without deasync works, and the other one with deasync hangs). First example: ```sh git clone [email protected]:docsifyjs/docsify.git cd docsify...

What about something like this? ```js const promiseSync = deasync((promise, cb) => { promise.then((result) => cb(null, result)).catch((error) => cb(error)); }); ``` Or does that make the same error? I'm using...

@NotWearingPants Neat. I didn't know about `callbackify`. Then my example would become: ```js const util = require('util') const deasync = require('deasync') const promiseSync = deasync(util.callbackify(promise => promise)) const importSync =...

See this for a solution and workaround: - https://github.com/abbr/deasync/issues/181

Related web spec issue: - https://github.com/w3c/uievents/issues/181

I added an example, but it isn't working. The `getString` function is not grabbing the string from the module properly. @battlelinegames Can you give it a try? Like this: ```sh...