* Checks if the given string is a tuning inticator. * @param name
(name: string)
| 110 | * @param name |
| 111 | */ |
| 112 | public static isTuning(name: string): boolean { |
| 113 | return !!ModelUtils.parseTuning(name); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * @internal |
nothing calls this directly
no test coverage detected