bufrw icon indicating copy to clipboard operation
bufrw copied to clipboard

Buffer Reading and Writing

Results 6 bufrw issues
Sort by recently updated
recently updated
newest added

When trying to use `bufrw` (via `thriftrw`) in an environment where server side code is bundled with Babel and Webpack, the build process throws an error related to using Octal...

Related: fusionjs/fusion-cli#622 https://github.com/jcorbin/hexer/pull/17 ansi-color uses octal notation for colors that seems to cause errors when using Babel's es2015 preset which uses strict mode for Javascript. This strict mode doesn't allow...

The interface to `bufrw.Struct` relies on undefined behavior of `Object.keys` in that it assumes the order is the same as the order in which the object literal is expressed.

The `valKey` and `dataKey` names are confusingly named. It might be nicer to say `caseKey` and `resultKey` or something.

Currently only covers UInt8, 16BE, 32BE, the rest should be easy to add by copy/paste boiler plate.

Each module should be easily unit testable. For now we've tested by integration through TChannel on its bufrw branch ( https://github.com/uber/tchannel/tree/bufrw ).