import { escape } from "https://deno.land/std@0.142.0/node/querystring.ts";
Performs URL percent-encoding on the given str
in a manner that is optimized for the specific requirements of URL query strings.
Used by querystring.stringify()
and is generally not expected to be used directly.
It is exported primarily to allow application code to provide a replacement percent-encoding implementation if necessary by assigning querystring.escape
to an alternative function.