method MIMEParams.prototype.entries Usage in Deno```typescript import { MIMEParams } from "node:node__util.d.ts"; ``` MIMEParams.prototype.entries(): IterableIterator<[string, 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`. Return Type IterableIterator<[string, string]>