Skip to content

Commit

Permalink
fix: remove end sequence in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnsgn committed Jun 14, 2022
1 parent 14024c1 commit d575954
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 @@ -93,7 +93,7 @@ const proxiedConsole = new Proxy(
const attributes = themeProp.reduce(
(str, style) => [
`${str[0]}${escape(style[0])}`,
`${str[1]}${escape(style[1])}`,
`${str[1]}${isNode ? escape(style[1]) : ""}`,
],
["", ""]
);
Expand Down

0 comments on commit d575954

Please sign in to comment.