LanguageDetector: destroy() method
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The destroy()
method of the LanguageDetector
interface destroys the LanguageDetector
instance it is called on. It makes sense to destroy these objects if they are no longer going to be used, as they tie up significant resources in their handling.
Syntax
js
destroy()
Parameters
None.
Return value
None (undefined
).
Examples
Basic destroy()
usage
js
const detector = await LanguageDetector.create({
expectedInputLanguages: ["en-US", "zh"],
});
// ...
detector.destroy();
Specifications
Specification |
---|
Writing Assistance APIs # dom-destroyablemodel-destroy |