@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
20 lines (16 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Returns RGB or Color
* @private
* @param color
*/
function prepareColor(color) {
if (color) {
return color.match(/^#/) ? "rgb:".concat(color.substr(1)) : color;
}
else {
return color;
}
}
exports.prepareColor = prepareColor;