(model, level, type2, ...arguments_)
| 65782 | } |
| 65783 | styles2.visible = { |
| 65784 | get() { |
| 65785 | const builder = createBuilder(this, this[STYLER], true); |
| 65786 | Object.defineProperty(this, "visible", { value: builder }); |
| 65787 | return builder; |
| 65788 | } |
| 65789 | }; |
| 65790 | var getModelAnsi = (model, level, type2, ...arguments_) => { |
| 65791 | if (model === "rgb") { |
| 65792 | if (level === "ansi16m") { |
| 65793 | return ansi_styles_default[type2].ansi16m(...arguments_); |
| 65794 | } |
| 65795 | if (level === "ansi256") { |
| 65796 | return ansi_styles_default[type2].ansi256(ansi_styles_default.rgbToAnsi256(...arguments_)); |
| 65797 | } |
| 65798 | return ansi_styles_default[type2].ansi(ansi_styles_default.rgbToAnsi(...arguments_)); |
| 65799 | } |
| 65800 | if (model === "hex") { |
| 65801 | return getModelAnsi("rgb", level, type2, ...ansi_styles_default.hexToRgb(...arguments_)); |
no outgoing calls
no test coverage detected
searching dependent graphs…