(string)
| 335 | #subtype; |
| 336 | #parameters; |
| 337 | constructor(string) { |
| 338 | string = `${string}`; |
| 339 | const data = parseTypeAndSubtype(string); |
| 340 | this.#type = data[0]; |
| 341 | this.#subtype = data[1]; |
| 342 | this.#parameters = instantiateMimeParams(StringPrototypeSlice(string, data[2])); |
| 343 | } |
| 344 | |
| 345 | get type() { |
| 346 | return this.#type; |
nothing calls this directly
no test coverage detected