* hasTextForStringID * Returns true if the given string id will return a string * * @param {string} stringID string identifier * @return {boolean} true if the given string id will return a string
(stringID)
| 445 | * @return {boolean} true if the given string id will return a string |
| 446 | */ |
| 447 | hasTextForStringID(stringID) { |
| 448 | return !!this._resolveString(stringID, { default: 'nothing found' }).locale; |
| 449 | } |
| 450 | |
| 451 | |
| 452 | /** |
nothing calls this directly
no test coverage detected