* https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.script
()
| 655 | * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.script |
| 656 | */ |
| 657 | public get script(): string | undefined { |
| 658 | const locale = getInternalSlots(this).locale |
| 659 | return parseUnicodeLanguageId(locale).script |
| 660 | } |
| 661 | /** |
| 662 | * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.region |
| 663 | */ |
nothing calls this directly
no test coverage detected