Skip to content

Commit

Permalink
decoder: Remove unused uint decoders
Browse files Browse the repository at this point in the history
  • Loading branch information
TobleMiner committed Sep 30, 2019
1 parent ab9f7eb commit ae4b9ca
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions decoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,6 @@ function decodeUintN(data, bits, be) {
return val;
}

function decodeUint32LE(data) {
return decodeUintN(data, 32, false);
}

function decodeUint16LE(data) {
return decodeUintN(data, 16, false);
}

function decodeUint32BE(data) {
return decodeUintN(data, 32, true);
}

function decodeUint16BE(data) {
return decodeUintN(data, 16, true);
}
Expand Down

0 comments on commit ae4b9ca

Please sign in to comment.