pretty-easy-hex-to-rgb
Version:
Converts a hex color value to it's coresponding rgb value and returns it in an array like format of red, green, blue color values
10 lines • 314 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
// Tests
var string_1 = require("./string");
// Check Block
function validHEXValues() {
describe('Value passed is a valid HEX color', string_1.hexString);
}
exports.validHEXValues = validHEXValues;
//# sourceMappingURL=index.js.map
;