Skip to main content
Module

x/netzo/deno.d.ts>URLSearchParams#delete

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
method URLSearchParams.prototype.delete
import { URLSearchParams } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";

Deletes the given search parameter and its associated value, from the list of all search parameters.

let searchParams = new URLSearchParams([['name', 'value']]);
searchParams.delete('name');

Parameters

name: string