* Returns the value of a given attribute name. If it does not exist then * returns null. * @param {string} name * @return {?string} * @private
(name)
| 329 | * @private |
| 330 | */ |
| 331 | getAttrValueOrNull_(name) { |
| 332 | return this.attrsByKey()[name] || null; |
| 333 | } |
| 334 | /** |
| 335 | * Returns the extension name. |
| 336 | * @return {string} |
nothing calls this directly
no test coverage detected