You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott f44969a5ab tools: update ESLint to current version 8 years ago
..
index.js tools: update ESLint to current version 8 years ago
license.md tools: update ESLint to current version 8 years ago
package.json tools: update ESLint to current version 8 years ago
readme.md tools: update ESLint to current version 8 years ago

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