Socket
Socket
Sign inDemoInstall

knex-schema-inspector

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knex-schema-inspector - npm Package Compare versions

Comparing version 1.5.10 to 1.5.11

4

dist/dialects/mssql.js

@@ -63,3 +63,5 @@ "use strict";

return null;
value = value.replace(/^\(([\s\S]*)\)$/, '$1');
while (value.startsWith('(') && value.endsWith(')')) {
value = value.slice(1, -1);
}
value = value.replace(/^\'([\s\S]*)\'$/, '$1');

@@ -66,0 +68,0 @@ return isNaN(value) ? String(value) : Number(value);

@@ -51,3 +51,6 @@ import { Knex } from 'knex';

value = value.replace(/^\(([\s\S]*)\)$/, '$1');
while (value.startsWith('(') && value.endsWith(')')) {
value = value.slice(1, -1);
}
value = value.replace(/^\'([\s\S]*)\'$/, '$1');

@@ -54,0 +57,0 @@

{
"name": "knex-schema-inspector",
"version": "1.5.10",
"version": "1.5.11",
"description": "Utility for extracting information about existing DB schema",

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

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