Socket
Socket
Sign inDemoInstall

query-string

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

query-string - npm Package Compare versions

Comparing version 6.13.3 to 6.13.4

13

index.d.ts

@@ -342,2 +342,9 @@ export interface ParseOptions {

export type Stringifiable = string | boolean | number;
export type StringifiableRecord = Record<
string,
Stringifiable | Stringifiable[] | null | undefined
>;
/**

@@ -347,3 +354,3 @@ Stringify an object into a query string and sort the keys.

export function stringify(
object: {[key: string]: any},
object: StringifiableRecord,
options?: StringifyOptions

@@ -363,5 +370,5 @@ ): string;

/**
Qverrides queries in the `url` property.
Overrides queries in the `url` property.
*/
readonly query: Record<string, string | undefined | null>;
readonly query: StringifiableRecord;

@@ -368,0 +375,0 @@ /**

{
"name": "query-string",
"version": "6.13.3",
"version": "6.13.4",
"description": "Parse and stringify URL query strings",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc