(colors)
| 2072 | // The combination tests need to be expanded furthe |
| 2073 | |
| 2074 | function colorsToHexString(colors) { |
| 2075 | return colors |
| 2076 | .map(function (c) { |
| 2077 | return c.toHex(); |
| 2078 | }) |
| 2079 | .join(","); |
| 2080 | } |
| 2081 | |
| 2082 | Deno.test("complement", function () { |
| 2083 | var complementDoesntModifyInstance = tinycolor("red"); |
no outgoing calls
no test coverage detected
searching dependent graphs…