Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-markdown/utils

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-markdown/utils - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

4

package.json

@@ -8,3 +8,3 @@ {

},
"version": "1.1.3",
"version": "1.1.4",
"license": "MIT",

@@ -26,3 +26,3 @@ "main": "src/index.js",

"dependencies": {
"@graphql-tools/load": "^7.8.11"
"@graphql-tools/load": "^7.8.13"
},

@@ -29,0 +29,0 @@ "peerDependencies": {

@@ -180,5 +180,5 @@ const {

queryType == null ||
!hasMethod(queryType, "getFields")
hasMethod(queryType, "getFields") === false
) {
return undefined;
return {};
}

@@ -185,0 +185,0 @@

@@ -43,6 +43,3 @@ /**

function escapeMDX(str) {
if (typeof str === "string") {
return str.replace(/[<>{}]/g, toHTMLUnicode);
}
return str;
return `${str}`.replace(/[<>{}]/g, toHTMLUnicode);
}

@@ -62,2 +59,5 @@

function replaceDiacritics(str) {
if (typeof str !== "string") {
return "";
}
return str

@@ -64,0 +64,0 @@ .toString()

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