温馨提示:本站仅提供公开网络链接索引服务,不存储、不篡改任何第三方内容,所有内容版权归原作者所有
AI智能索引来源:http://www.bun.com/reference/node/util/MIMEParams
点击访问原文链接

Node util.MIMEParams class | API Reference | Bun

Node util.MIMEParams class | API Reference | BunBuildDocsReferenceGuidesBlogDiscord/node:util/MIMEParamsM[Symbol.iterator]CoconstructorMdeleteMentriesMgetMhasMkeysMsetMvalues

Search the reference...

/

BuildDocsReferenceGuidesBlogDiscord/node:util/MIMEParamsM[Symbol.iterator]CoconstructorMdeleteMentriesMgetMhasMkeysMsetMvalues

class

util.MIMEParamsclass MIMEParams

The MIMEParams API provides read and write access to the parameters of a MIMEType.

[Symbol.iterator](): Iterator[name: string, value: string]>;

Returns an iterator over each of the name-value pairs in the parameters.

delete(name: string): void;

Remove all name-value pairs whose name is name.

entries(): Iterator[name: string, value: string]>;

Returns an iterator over each of the name-value pairs in the parameters. Each item of the iterator is a JavaScript Array. The first item of the array is the name, the second item of the array is the value.

get(name: string): null | string;

Returns the value of the first name-value pair whose name is name. If there are no such pairs, null is returned.

@returns

or null if there is no name-value pair with the given name.

has(name: string): boolean;

Returns true if there is at least one name-value pair whose name is name.

keys(): Iteratorstring>;

Returns an iterator over the names of each name-value pair.

import { MIMEType } from 'node:util';

const { params } = new MIMEType('text/plain;foo=0;bar=1');
for (const name of params.keys()) {
console.log(name);
}
// Prints:
// foo
// bar
set(name: string,value: string): void;

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=xyz
values(): Iteratorstring>;

Returns an iterator over the values of each name-value pair.

Resources

ReferenceDocsGuidesDiscordMerch StoreGitHubBlog 

Toolkit

RuntimePackage managerTest runnerBundlerPackage runner

Project

Bun 1.0Bun 1.1Bun 1.2Bun 1.3RoadmapContributingLicense

Baked with ❤️ in San Francisco

We're hiring →

Node util.MIMEParams class | API Reference | Bun,AI智能索引,全网链接索引,智能导航,网页索引

    The `MIMEParams` API provides read and write access to the parameters of a `MIMEType`.