Socket
Socket
Sign inDemoInstall

codemirror-graphql

Package Overview
Dependencies
4
Maintainers
1
Versions
241
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.0 to 0.3.1

2

mode.js

@@ -92,3 +92,3 @@ /**

// Note the closing quote is made optional as an IDE experience improvment.
String: /^"(?:[^"\\]|\\(?:b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/
String: /^"(?:[^"\\]|\\(?:"|\/|\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/
};

@@ -95,0 +95,0 @@

{
"name": "codemirror-graphql",
"version": "0.3.0",
"version": "0.3.1",
"description": "GraphQL mode and helpers for CodeMirror.",

@@ -5,0 +5,0 @@ "contributors": [

@@ -216,3 +216,3 @@ /**

ch();
while (code !== 34) {
while (code !== 34 && code > 31) {
ch();

@@ -223,3 +223,3 @@ if (code === 92) {

switch (code) {
case 34: // '
case 34: // "
case 47: // /

@@ -226,0 +226,0 @@ case 92: // \

@@ -68,3 +68,3 @@ /**

// JSON String.
String: /^"(?:[^"\\]|\\(?:b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/,
String: /^"(?:[^"\\]|\\(?:"|\/|\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/,

@@ -71,0 +71,0 @@ // JSON literal keywords.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc