Qix-/color-convert

The issue has been closed
Convertation is differrent #101
mcfly10 posted onGitHub
Hi,
I getting different values converting from RGB to HSL and then back
var convert = require('color-convert');
console.log("A38E8E", " => ", convert.hex.hsl("A38E8E")); // Result A38E8E
console.log([0, 10, 60], " => ", convert.hsl.hex(0, 10, 60)); // Result A38F8F. Expected A38E8E
Converting A38E8E I get [0, 10, 60] Converting [0, 10, 60] I get A38F8F. Not A38E8E!