mimeParams[@@iterator]()


mimeParams.entries() 的别名。

\Alias for mimeParams.entries().

import { MIMEType } from 'node:util';
const { params } = new MIMEType('text/plain;foo=bar;xyz=baz');
for (const [name, value] of params) {
 console.log(name, value);
}
// Prints:
// foo bar
// xyz bazconst { MIMEType } = require('node:util');
const { params } = new MIMEType('text/plain;foo=bar;xyz=baz');
for (const [name, value] of params) {
 console.log(name, value);
}
// Prints:
// foo bar
// xyz baz

AltStyle によって変換されたページ (->オリジナル) /