Erik Römmelt 5d28bc36e1 node_modules updated, buefy add to lib folder | 5 years ago | |
---|---|---|
.. | ||
index.js | 5 years ago | |
license.md | 5 years ago | |
package.json | 5 years ago | |
readme.md | 5 years ago |
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.