Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Mar 25, 2023
1 parent c7c92c2 commit 43567ce
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1402,11 +1402,10 @@ rnaptr.decode = function (buf, offset) {
rnaptr.decode.bytes = 0

rnaptr.encodingLength = function (data) {
return
string.encodingLength(data.flags) +
return string.encodingLength(data.flags) +
string.encodingLength(data.services) +
string.encodingLength(data.regexp) +
name.encodingLength(data.replacement) + 6;
name.encodingLength(data.replacement) + 6
}

const renc = exports.record = function (type) {
Expand Down

0 comments on commit 43567ce

Please sign in to comment.