Back to Content

LanguageDetector: destroy() method

files/en-us/web/api/languagedetector/destroy/index.md

latest1.0 KB
Original Source

{{APIRef("Translator and Language Detector APIs")}}{{SeeCompatTable}}{{securecontext_header}}

The destroy() method of the {{domxref("LanguageDetector")}} interface releases the resources assigned to the LanguageDetector instance it is called on and stops any further activity on it. This means that any ongoing and subsequent method calls made on the LanguageDetector will reject with an AbortError.

It makes sense to destroy LanguageDetector objects if they are no longer being used, as they tie up significant resources in their handling.

Syntax

js-nolint
destroy()

Parameters

None.

Return value

None ({{jsxref("undefined")}}).

Examples

Basic destroy() usage

js
const detector = await LanguageDetector.create({
  expectedInputLanguages: ["en-US", "zh"],
});

// ...

detector.destroy();

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also