Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsedinkin committed Aug 8, 2022
1 parent 48a2960 commit b0da046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const rgbToHex = (rgba, alpha = false) => {
return "#" + format(r) + format(g) + format(b) + (alpha ? format(a) : "");
}
catch (err) {
console.error(err);
// console.error(err);
return undefined;
}
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rgb-to-hex",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "./index.js",
"types": "./index.d.ts",
Expand Down

0 comments on commit b0da046

Please sign in to comment.