Skip to content

Commit

Permalink
Fix output quoting.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjeffburke committed Jul 27, 2020
1 parent d76a0ca commit b8aab01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -59,7 +59,7 @@ console.warn(color('rgba(100%, 0%, 0%, .5)').alpha(0.4).cssa());
```

```output
'rgba(255,0,0,0.4)'
rgba(255,0,0,0.4)
```

All of the above return color instances in the relevant color space
Expand Down Expand Up @@ -309,7 +309,7 @@ console.log(myColor.red() + ' ' + myColor.green() + ' ' + myColor.blue());
```

```output
'0 0.06265060240963878 0.5999999999999999'
0 0.06265060240963878 0.5999999999999999
```

# Building
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,7 +34,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"evaldown": "^1.1.2",
"evaldown": "^1.2.2",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"mocha-lcov-reporter": "1.2.0",
Expand Down

0 comments on commit b8aab01

Please sign in to comment.