NewsBlur/node/node_modules/buffer-shims
2019-04-13 16:45:13 -04:00
..
index.js Updating node dependencies. 2016-11-29 18:29:50 -08:00
license.md Updating node dependencies. 2016-11-29 18:29:50 -08:00
package.json Upgrading node_modules 2019-04-13 16:45:13 -04:00
readme.md Updating node dependencies. 2016-11-29 18:29:50 -08:00

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