]> zoso.dev Git - buffer.git/commitdiff
export TYPED_ARRAY_SUPPORT for typedarray-to-buffer
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 11 Sep 2014 19:48:05 +0000 (20:48 +0100)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 11 Sep 2014 19:48:05 +0000 (20:48 +0100)
index.js

index 0d0d6388bed633e238cdbe3bdedb6548b560523d..9b3d1c7f7af1a90fbdbed16897f17da42eef9d29 100644 (file)
--- a/index.js
+++ b/index.js
@@ -35,7 +35,7 @@ Buffer.poolSize = 8192
  * We detect these buggy browsers and set `TYPED_ARRAY_SUPPORT` to `false` so they will
  * get the Object implementation, which is slower but will work correctly.
  */
-var TYPED_ARRAY_SUPPORT = (function () {
+var TYPED_ARRAY_SUPPORT = Buffer.TYPED_ARRAY_SUPPORT = (function () {
   try {
     var buf = new ArrayBuffer(0)
     var arr = new Uint8Array(buf)