mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-10 20:53:02 -05:00
initial commit
This commit is contained in:
21
node_modules/buffer-shims/readme.md
generated
vendored
Normal file
21
node_modules/buffer-shims/readme.md
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
buffer-shims
|
||||
===
|
||||
|
||||
functions to make sure the new buffer methods work in older browsers.
|
||||
|
||||
```js
|
||||
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
|
||||
|
||||

|
||||
Reference in New Issue
Block a user