(l, a, b, opacity)
| 128055 | return new Lab(l, 0, 0, opacity == null ? 1 : opacity); |
| 128056 | } |
| 128057 | function lab(l, a, b, opacity) { |
| 128058 | return arguments.length === 1 ? labConvert(l) : new Lab(l, a, b, opacity == null ? 1 : opacity); |
| 128059 | } |
| 128060 | exports.default = lab; |
| 128061 | function Lab(l, a, b, opacity) { |
| 128062 | this.l = +l; |
nothing calls this directly
no test coverage detected