Added editor

This commit is contained in:
parallax
2017-03-02 10:07:55 +01:00
parent c786d17cdf
commit 26d0bf19f8
333 changed files with 61201 additions and 0 deletions
+21
View 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
![](https://i.imgur.com/zxII3jJ.gif)