Skip to content

Commit

Permalink
Fixing unicode characters at Windows environments
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianoCahete committed Feb 15, 2016
1 parent 1b31788 commit 64bee42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caniuse.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ resultmap = y: "✔", n: "✘", a: "◒", u: "‽", i: "ⓘ", w: "⚠"
supernums = "⁰¹²³⁴⁵⁶⁷⁸⁹"

if (os.platform() == 'win32')
resultmap = y: "\u221A", n: "\u00D7", a: "\u0473", u: "?", i: "\u24D8", w: "\u26A0"
resultmap = y: "\u221A", n: "\u00D7", a: "\u0473", u: "\u203D", i: "\u24D8", w: "\u26A0"

if argv["ascii"]
resultmap = y: "[Yes]", n: "[No]", a: "[Partly]", u: "[?!]", i: "[Info]", w: "[Warning]"
Expand Down

0 comments on commit 64bee42

Please sign in to comment.