▟ ▖▟ ▖

Results 18 comments of ▟ ▖▟ ▖

`return getActions(state.states || {}).concat(actions)` instead of `return state.states ? getActions(state.states) : actions` the problem lies in the recursion of states.

congratulations :)

hmmm .. i'm still waiting … ):

how about hashing for example the item url? (if no id is given) oh and btw .. the xml stream feature of your node-xml module fits perfectly into this library...

sure, wanna send a pull request with your commits?

> I'm not sure from your readme what the split event emits? > you can specify more than one split token .. so it's emitted whenever > a token is...

not quite, "!!!!!1!!!" would be stuck in the buffer because there is no "\n" after it to cut it off. btw thanks for the idea ... plz moar of that...

just discovered, that this allready works :D so it will emit "!!!!!1!!!" on end.

``` javascript stream = new (require('bufferstream'))({size:'flexible', split:'\n'}); stream.on('data', function (line) {console.log(line.length, line.toString())}); stream.write("data\n\ndada"); stream.end(); ``` results in: ``` 4 'data' 0 '' 4 'dada' ```