(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; |
| 2477 | this.l = +l; |
| 2478 | this.opacity = +opacity; |
| 2479 | } |
| 2480 | (0, _defineJsDefault.default)(Hsl, hsl, (0, _defineJs.extend)(Color, { |
| 2481 | brighter: function(k) { |
| 2482 | k = k == null ? brighter : Math.pow(brighter, k); |
nothing calls this directly
no outgoing calls
no test coverage detected