]> zoso.dev Git - buffer.git/commitdiff
Remove deprecated 'raw' and 'raws' encoding
authorFeross Aboukhadijeh <feross@feross.org>
Sat, 6 Aug 2016 22:12:34 +0000 (15:12 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Sat, 6 Aug 2016 22:12:34 +0000 (15:12 -0700)
https://github.com/nodejs/node/pull/2859

index.js

index e36a5a7278ef1258bbb0844b1ab721a0c3dc798f..6d61388713e338bb8d685653012f623985e2dd9c 100644 (file)
--- a/index.js
+++ b/index.js
@@ -353,7 +353,6 @@ Buffer.isEncoding = function isEncoding (encoding) {
     case 'ascii':
     case 'binary':
     case 'base64':
-    case 'raw':
     case 'ucs2':
     case 'ucs-2':
     case 'utf16le':
@@ -415,8 +414,6 @@ function byteLength (string, encoding) {
     switch (encoding) {
       case 'ascii':
       case 'binary':
-      case 'raw':
-      case 'raws':
         return len
       case 'utf8':
       case 'utf-8':