interface StringifyOptions
Usage in Deno
import { type StringifyOptions } from "node:querystring";
The node:querystring
module provides utilities for parsing and formatting URL
query strings. It can be accessed using:
const querystring = require('node:querystring');
querystring
is more performant than URLSearchParams
but is not a
standardized API. Use URLSearchParams
when performance is not critical or
when compatibility with browser code is desirable.
optional
encodeURIComponent: ((str: string) => string) | undefined