Timothy Gu

Results 227 comments of Timothy Gu

Another way is to force the user to export the promise in this fashion: ``` js module.exports = new Promise(function (fulfill, reject) { fulfill(setTimeout(function() { console.log('FULFILLED!') }, 300)); }); ```...

They mean different things. For the first, `console.error` will be called if `JSON.parse` fails and throws an error. In case of the second, the JSON.parse error is silently ignored. I...

I'll try to review this tomorrow.

What system are you running?

Unfortunately you cannot change the opts while it is spinning currently. I'll keep this ticket open for a `hotReload` function that maybe can change the non-critical options on-the-fly.

This would complicate positioning (i.e. if both left and right are specified which one would you use?), and it's easy enough on your side, so closing. ``` js right =...

`.compile()` is not cached automatically. Ever. If you are using `.render*()` it is automatically cached when the `cache` option is enabled.

Can you paste the error you are seeing?