mimeParams.set(name, value)
将与 name 关联的 MIMEParams 对象中的值设置为 value。如果存在任何已有的名称为 name 的名值对,将第一个此类名值对的值设置为 value。
【Sets the value in the MIMEParams object associated with name to
value. If there are any pre-existing name-value pairs whose names are name,
set the first such pair's value to value.】
import { MIMEType } from 'node:util';
const { params } = new MIMEType('text/plain;foo=0;bar=1');
params.set('foo', 'def');
params.set('baz', 'xyz');
console.log(params.toString());
// Prints: foo=def;bar=1;baz=xyzconst { MIMEType } = require('node:util');
const { params } = new MIMEType('text/plain;foo=0;bar=1');
params.set('foo', 'def');
params.set('baz', 'xyz');
console.log(params.toString());
// Prints: foo=def;bar=1;baz=xyz