(colors, format, object = false)
| 164 | |
| 165 | window.bulkConvertColorValue = bulkConvertColorValue; |
| 166 | function bulkConvertColorValue(colors, format, object = false) { |
| 167 | let formatted = []; |
| 168 | for (let i = 0; i < colors.length; i++) { |
| 169 | formatted.push(convertColorValue(colors[i], format, object)); |
| 170 | } |
| 171 | return formatted; |
| 172 | } |
| 173 | |
| 174 | window.getAllChannelValues = getAllChannelValues; |
| 175 | function getAllChannelValues(colors, format, key) { |
no test coverage detected