Skip to content

Commit

Permalink
fix: Remove duplicate named export txt (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
amithm7 committed Nov 2, 2021
1 parent 5aebb85 commit 8e6d91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const NOT_FLUSH_MASK = ~FLUSH_MASK
const QU_MASK = 1 << 15
const NOT_QU_MASK = ~QU_MASK

const name = exports.txt = exports.name = {}
const name = exports.name = {}

name.encode = function (str, buf, offset) {
if (!buf) buf = Buffer.alloc(name.encodingLength(str))
Expand Down

0 comments on commit 8e6d91c

Please sign in to comment.