LanguageDetector: expectedInputLanguages property
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The expectedInputLanguages
read-only property of the LanguageDetector
interface returns the expected languages to be detected in the input text. Specifying expected input languages helps improve the accuracy of the language detection.
A LanguageDetector
instance's expectedInputLanguages
are set when creating it via a create()
call.
Value
An array of strings specifying the expected input languages. These will be valid BCP 47 language tags (as specified in RFC 5646).
Examples
js
const detector = await LanguageDetector.create({
expectedInputLanguages: ["en-US", "zh"],
});
// Logs ["en-US", "zh"]
console.log(detector.expectedInputLanguages);
Specifications
Specification |
---|
Translator and Language Detector APIs # dom-languagedetector-expectedinputlanguages |