吕君喜 406d880ac6 first | преди 3 години | |
---|---|---|
.. | ||
index.js | преди 3 години | |
license.md | преди 3 години | |
package.json | преди 3 години | |
readme.md | преди 3 години |
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.