* Replace rule, run plugins.
(name, style, options)
| 60 | * Replace rule, run plugins. |
| 61 | */ |
| 62 | replaceRule(name, style, options) { |
| 63 | const newRule = this.rules.replace(name, style, options) |
| 64 | if (newRule) this.options.jss.plugins.onProcessRule(newRule) |
| 65 | return newRule |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Generates a CSS string. |
nothing calls this directly
no test coverage detected