* @return {boolean} * @private
()
| 998 | * @private |
| 999 | */ |
| 1000 | _isVisible() { |
| 1001 | const display = this.options.display; |
| 1002 | |
| 1003 | if (display !== 'auto') { |
| 1004 | return !!display; |
| 1005 | } |
| 1006 | |
| 1007 | return this.getMatchingVisibleMetas().length > 0; |
| 1008 | } |
| 1009 | |
| 1010 | /** |
| 1011 | * @private |
no test coverage detected