Pauan
Pauan
Right now you can use `types.visit` which will traverse over the AST, and then you can mutate the AST in whatever way you want. This works fine, and most of...
I'm using cargo-web + stdweb to create Chrome Extensions. It generally works well, but there is one issue. To explain, here is what the `.js` looks like when compiling with...
When using the `-emscripten` targets it automatically runs UgilfyJS on the `.js` code, but when using `wasm32-unknown-unknown` it doesn't. This results in extra code bloat. I propose to have `cargo-web`...
Right now if you use `cargo web start` it will automatically re-build if the files change, which is great! But I'm developing a Chrome Extension, so `cargo web start` doesn't...
I haven't tested all of them, but I believe this should completely fix issue #45 All tests pass, and all the examples seem to work the same. Rather than hacking...
According to MDC (https://developer.mozilla.org/en-US/docs/CSS/transform) here are the CSS transforms that morpheus is currently missing: scaleX, scaleY, skewX, skewY, translateX, translateY, matrix, matrix3d, translate3d, translateZ, scale3d, scaleZ, rotate3d, rotateX, rotateY, rotateZ,...
I have created a [jsperf](http://jsperf.com/promises-queue) for queues. `drain_Array` is a naive `Array.prototype.shift`, `drain_ArrayQueue` is asap's optimization, and `drain_Queue` uses an implementation of Queues that has O(1) push and amortized O(1)...
It was brought to my attention in https://github.com/Pauan/rust-dominator/issues/10 that JavaScript strings (and DOMString) allow for unpaired surrogates. When using `TextEncoder`, it will convert those unpaired surrogates into U+FFFD (the replacement...
[I had created an RFC](https://github.com/rustwasm/rfcs/pull/3) for adding in traits to wasm-bindgen (similar to what stdweb is doing), however [it has been superseded by an RFC which uses `Deref` instead](https://github.com/rustwasm/rfcs/pull/5). It...
I'm not sure whether this belongs in this repository or [purescript/purescript](https://github.com/purescript/purescript) Right now, `psc-package` downloads packages and places them into the `.psc-package` folder: ``` .psc-package └─┬ psc-0.10.2 └─┬ prelude └─┬...