Skip to content

Commit

Permalink
Removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mdidon authored May 27, 2021
1 parent c50a7a9 commit 46da651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/dns-txt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class DnsTxt {
*/
public decodeAll(buffer: Array<Buffer>) {
return buffer
.filter(i => i.length > 1) //i.toString() != ''
.filter(i => i.length > 1)
.map(i => this.decode(i))
.reduce((prev, curr) => {
var obj = prev
Expand All @@ -62,4 +62,4 @@ export class DnsTxt {

}

export default DnsTxt
export default DnsTxt

0 comments on commit 46da651

Please sign in to comment.