Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. Summarizer
  4. destroy()

Summarizer: destroy() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

Thedestroy() method of theSummarizer interface releases the resources assigned to theSummarizer instance it is called on and stops any further activity on it. This means that any ongoing and subsequent method calls made on theSummarizer will reject with anAbortError.

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

Syntax

js
destroy()

Parameters

None.

Return value

None (undefined).

Examples

Basicdestroy() usage

js
const summarizer = await Summarizer.create({  sharedContext:    "A general summary to help a user decide if the text is worth reading",  type: "tldr",  length: "short",});// ...summarizer.destroy();

Specifications

Specification
Writing Assistance APIs
# dom-destroyablemodel-destroy

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp