Skip to main content

get

method MIMEParams.prototype.get
Jump to headingMIMEParams.prototype.get(name: string): string | null

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

Parameters Jump to heading

Jump to headingname: string

Return Type Jump to heading

string | null

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

Back to top