@@ -1119,3 +1119,32 @@ Buffer.prototype.writeDoubleLE = function(value, offset, noAssert) {
1119
1119
Buffer . prototype . writeDoubleBE = function ( value , offset , noAssert ) {
1120
1120
writeDouble ( this , value , offset , true , noAssert ) ;
1121
1121
} ;
1122
+
1123
+ SlowBuffer . prototype . readUInt8 = Buffer . prototype . readUInt8 ;
1124
+ SlowBuffer . prototype . readUInt16LE = Buffer . prototype . readUInt16LE ;
1125
+ SlowBuffer . prototype . readUInt16BE = Buffer . prototype . readUInt16BE ;
1126
+ SlowBuffer . prototype . readUInt32LE = Buffer . prototype . readUInt32LE ;
1127
+ SlowBuffer . prototype . readUInt32BE = Buffer . prototype . readUInt32BE ;
1128
+ SlowBuffer . prototype . readInt8 = Buffer . prototype . readInt8 ;
1129
+ SlowBuffer . prototype . readInt16LE = Buffer . prototype . readInt16LE ;
1130
+ SlowBuffer . prototype . readInt16BE = Buffer . prototype . readInt16BE ;
1131
+ SlowBuffer . prototype . readInt32LE = Buffer . prototype . readInt32LE ;
1132
+ SlowBuffer . prototype . readInt32BE = Buffer . prototype . readInt32BE ;
1133
+ SlowBuffer . prototype . readFloatLE = Buffer . prototype . readFloatLE ;
1134
+ SlowBuffer . prototype . readFloatBE = Buffer . prototype . readFloatBE ;
1135
+ SlowBuffer . prototype . readDoubleLE = Buffer . prototype . readDoubleLE ;
1136
+ SlowBuffer . prototype . readDoubleBE = Buffer . prototype . readDoubleBE ;
1137
+ SlowBuffer . prototype . writeUInt8 = Buffer . prototype . writeUInt8 ;
1138
+ SlowBuffer . prototype . writeUInt16LE = Buffer . prototype . writeUInt16LE ;
1139
+ SlowBuffer . prototype . writeUInt16BE = Buffer . prototype . writeUInt16BE ;
1140
+ SlowBuffer . prototype . writeUInt32LE = Buffer . prototype . writeUInt32LE ;
1141
+ SlowBuffer . prototype . writeUInt32BE = Buffer . prototype . writeUInt32BE ;
1142
+ SlowBuffer . prototype . writeInt8 = Buffer . prototype . writeInt8 ;
1143
+ SlowBuffer . prototype . writeInt16LE = Buffer . prototype . writeInt16LE ;
1144
+ SlowBuffer . prototype . writeInt16BE = Buffer . prototype . writeInt16BE ;
1145
+ SlowBuffer . prototype . writeInt32LE = Buffer . prototype . writeInt32LE ;
1146
+ SlowBuffer . prototype . writeInt32BE = Buffer . prototype . writeInt32BE ;
1147
+ SlowBuffer . prototype . writeFloatLE = Buffer . prototype . writeFloatLE ;
1148
+ SlowBuffer . prototype . writeFloatBE = Buffer . prototype . writeFloatBE ;
1149
+ SlowBuffer . prototype . writeDoubleLE = Buffer . prototype . writeDoubleLE ;
1150
+ SlowBuffer . prototype . writeDoubleBE = Buffer . prototype . writeDoubleBE ;
0 commit comments