UNPKG

@cloudinary/url-gen

Version:

You are invited to influence our new SDK [Click here to view github discussion](https://github.com/cloudinary/js-url-gen/discussions/602) =========================

14 lines (13 loc) 231 B
/** * Returns RGB or Color * @private * @param color */ export function prepareColor(color) { if (color) { return color.match(/^#/) ? `rgb:${color.substr(1)}` : color; } else { return color; } }