(h, s, l, opacity)
| 2469 | return new Hsl(h, s, l, o.opacity); |
| 2470 | } |
| 2471 | function hsl(h, s, l, opacity) { |
| 2472 | return arguments.length === 1 ? hslConvert(h) : new Hsl(h, s, l, opacity == null ? 1 : opacity); |
| 2473 | } |
| 2474 | function Hsl(h, s, l, opacity) { |
| 2475 | this.h = +h; |
| 2476 | this.s = +s; |
no test coverage detected