New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@toddledev/ssr

Package Overview
Dependencies
Maintainers
0
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@toddledev/ssr - npm Package Compare versions

Comparing version 0.0.3-alpha.24 to 0.0.3-alpha.25

2

dist/rendering/request.d.ts

@@ -1,2 +0,2 @@

export declare const escapeSearchParameter: (searchParameter: string | null) => string | null;
export declare const escapeSearchParameter: (searchParameter?: string | null) => string | null;
export declare const escapeSearchParameters: (searchParams: URLSearchParams) => URLSearchParams;

@@ -15,7 +15,7 @@ {

"dependencies": {
"@toddledev/core": "0.0.3-alpha.24",
"@toddledev/core": "0.0.3-alpha.25",
"cookie": "1.0.2",
"xss": "1.0.15"
},
"version": "0.0.3-alpha.24"
"version": "0.0.3-alpha.25"
}
import { isDefined } from '@toddledev/core/dist/utils/util'
import xss from 'xss'
export const escapeSearchParameter = (searchParameter: string | null) =>
export const escapeSearchParameter = (searchParameter?: string | null) =>
typeof searchParameter === 'string' ? xss(searchParameter) : null

@@ -6,0 +6,0 @@

Sorry, the diff of this file is not supported yet

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