Joe Pea
Joe Pea
Nice job on this project! I'm trying to follow the docs on getting a markdown plugin working. For example, I tried installing markdown-it-emoji just like the docs said, then I...
I've got some symlinked folders (that have nothing to do with the docs) which causes docpress to have some trouble: ``` Docpress starting development - ^C to exit err ✗...
I'm not sure why yet, but trying to use docpress is giving me a Node error `ENOSPC` which seems to be related to file watching. This is the stack: ```...
In your docs, for example, at http://docpress.github.io/customization/markdown.html in the sidebar I see the sub-headers in the sidebar with long dashed lines:  But on...
We should make a GitHub action so that when we update our README it automatically goes to the website. At the moment, our [README](https://github.com/tweenjs/tween.js/blob/master/README.md) is out of sync with the...
Given a value of 300, this is very close Easing.Exponential, but it will hit 0 when amount is 0, therefore being an alternative to Exponential to avoid the jump issue...
fixes https://github.com/tweenjs/tween.js/issues/555 (in particular, see the plan at the bottom, and note that the fix for v17 has already been published in v17.6.0). target: v19 @lguminski This does not include...
It would be similar to `EventedTween` in https://github.com/tweenjs/tween.js/issues/329.
https://github.com/tweenjs/tween.js/pull/558 allows `tween.update()` to be called without a time argument, and existing tests pass. We should also add a unit test for the case of calling it without the `time`...
There's things we can optimize, like preventing new variable creations, using `typeof` instead of `instanceof`, etc. F.e. here's a test that shows `instanceof` being slower than `typeof`: - https://jsperf.com/typeof-vs-instanceof-for-object/2