tree: c7732538223baf0e5e5aa363d20e07e3aae79346 [path history] [tgz]
  1. index.js
  2. license.md
  3. package.json
  4. readme.md
PoCs/nodejs_poc/node_modules/buffer-shims/readme.md

buffer-shims

functions to make sure the new buffer methods work in older browsers.

var bufferShim = require('buffer-shims');
bufferShim.from('foo');
bufferShim.alloc(9, 'cafeface', 'hex');
bufferShim.allocUnsafe(15);
bufferShim.allocUnsafeSlow(21);

should just use the original in newer nodes and on older nodes uses fallbacks.

Known Issues

  • this does not patch the buffer object, only the constructor stuff
  • it's actually a polyfill