@@ -1066,20 +1066,20 @@ function addBufferPrototypeMethods(proto) {
10661066 proto . writeDoubleLE = bigEndian ? writeDoubleBackwards : writeDoubleForwards ;
10671067 proto . writeDoubleBE = bigEndian ? writeDoubleForwards : writeDoubleBackwards ;
10681068
1069- proto . asciiSlice = function asciiSlice ( start , end ) { return asciiSlice ( this , start , end ) ; } ;
1070- proto . base64Slice = function base64Slice ( start , end ) { return base64Slice ( this , start , end ) ; } ;
1071- proto . base64urlSlice = function base64urlSlice ( start , end ) { return base64urlSlice ( this , start , end ) ; } ;
1072- proto . latin1Slice = function latin1Slice ( start , end ) { return latin1Slice ( this , start , end ) ; } ;
1073- proto . hexSlice = function hexSlice ( start , end ) { return hexSlice ( this , start , end ) ; } ;
1074- proto . ucs2Slice = function ucs2Slice ( start , end ) { return ucs2Slice ( this , start , end ) ; } ;
1075- proto . utf8Slice = function utf8Slice ( start , end ) { return utf8Slice ( this , start , end ) ; } ;
1076- proto . asciiWrite = function asciiWrite ( string , offset , length ) { return asciiWrite ( this , string , offset , length ) ; } ;
1077- proto . base64Write = function base64Write ( string , offset , length ) { return base64Write ( this , string , offset , length ) ; } ;
1078- proto . base64urlWrite = function base64urlWrite ( string , offset , length ) { return base64urlWrite ( this , string , offset , length ) ; } ;
1079- proto . latin1Write = function latin1Write ( string , offset , length ) { return latin1Write ( this , string , offset , length ) ; } ;
1080- proto . hexWrite = function hexWrite ( string , offset , length ) { return hexWrite ( this , string , offset , length ) ; } ;
1081- proto . ucs2Write = function ucs2Write ( string , offset , length ) { return ucs2Write ( this , string , offset , length ) ; } ;
1082- proto . utf8Write = function utf8Write ( string , offset , length ) { return utf8Write ( this , string , offset , length ) ; } ;
1069+ proto . asciiSlice = function ( start , end ) { return asciiSlice ( this , start , end ) ; } ;
1070+ proto . base64Slice = function ( start , end ) { return base64Slice ( this , start , end ) ; } ;
1071+ proto . base64urlSlice = function ( start , end ) { return base64urlSlice ( this , start , end ) ; } ;
1072+ proto . latin1Slice = function ( start , end ) { return latin1Slice ( this , start , end ) ; } ;
1073+ proto . hexSlice = function ( start , end ) { return hexSlice ( this , start , end ) ; } ;
1074+ proto . ucs2Slice = function ( start , end ) { return ucs2Slice ( this , start , end ) ; } ;
1075+ proto . utf8Slice = function ( start , end ) { return utf8Slice ( this , start , end ) ; } ;
1076+ proto . asciiWrite = function ( string , offset , length ) { return asciiWrite ( this , string , offset , length ) ; } ;
1077+ proto . base64Write = function ( string , offset , length ) { return base64Write ( this , string , offset , length ) ; } ;
1078+ proto . base64urlWrite = function ( string , offset , length ) { return base64urlWrite ( this , string , offset , length ) ; } ;
1079+ proto . latin1Write = function ( string , offset , length ) { return latin1Write ( this , string , offset , length ) ; } ;
1080+ proto . hexWrite = function ( string , offset , length ) { return hexWrite ( this , string , offset , length ) ; } ;
1081+ proto . ucs2Write = function ( string , offset , length ) { return ucs2Write ( this , string , offset , length ) ; } ;
1082+ proto . utf8Write = function ( string , offset , length ) { return utf8Write ( this , string , offset , length ) ; } ;
10831083}
10841084
10851085// This would better be placed in internal/worker/io.js, but that doesn't work
0 commit comments