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

gqutils

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gqutils - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

dist/Schema.js

@@ -186,3 +186,3 @@ 'use strict';

getTypeName(type) {
const regex = /^[a-zA-Z0-9_]+$/;
const regex = /[a-zA-Z0-9_]+$/;
const matches = type.match(regex);

@@ -189,0 +189,0 @@ return matches && matches[0];

{
"name": "gqutils",
"version": "1.0.6",
"version": "1.0.7",
"description": "Utilities For GraphQL",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -188,3 +188,3 @@ import _ from 'lodash';

getTypeName(type) {
const regex = /^[a-zA-Z0-9_]+$/;
const regex = /[a-zA-Z0-9_]+$/;
const matches = type.match(regex);

@@ -441,3 +441,4 @@ return matches && matches[0];

const connectionTypeName = matches[1];
const connectionType = schema.types[connectionTypeName] || schema.interfaces[connectionTypeName];
const connectionType = schema.types[connectionTypeName] ||
schema.interfaces[connectionTypeName];

@@ -444,0 +445,0 @@ if (connectionType) {

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