Michael Petrovich
Michael Petrovich
This might be a case of YAML -> RegExp not working correctly. We'll investigate!
I'm late to the party, but we built our own Underscore-like functional programming library since none of the tools out there were maintained, easy to use, or well-documented: https://github.com/nextbigsoundinc/dash Highlights:...
I can confirm that this issue still exists. This doesn't work: ```js fs.readFile(filepath, { encoding: 'utf8' }) ``` This does work: ```js fs.readFile(filepath, 'utf8') ```
The lack of viable alternatives is what prompted us to create our own library. Nonetheless, there are a couple that might be useful depending on your needs: - [maciejczyzewski/bottomline](https://github.com/maciejczyzewski/bottomline): Relatively...
@archonic For non-IE, the best solution is to use [DOM4 Mutation Observers](http://stackoverflow.com/questions/2844565/is-there-a-jquery-dom-change-listener/11546242#11546242). However, to achieve a fully cross-browser implementation, you'd most likely have to adopt the same approach that Brandon's...