()
| 80 | } |
| 81 | |
| 82 | ngDoCheck() { |
| 83 | if (this._differ) { |
| 84 | const changes = this._differ.diff(this._ngStyle!); |
| 85 | if (changes) { |
| 86 | this._applyChanges(changes); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | private _setStyle(nameAndUnit: string, value: string | number | null | undefined): void { |
| 92 | const [name, unit] = nameAndUnit.split('.'); |
nothing calls this directly
no test coverage detected