Socket
Socket
Sign inDemoInstall

mysql-import

Package Overview
Dependencies
11
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.12 to 1.0.13

6

mysql-import.js
/**
* mysql-import - v1.0.12
* mysql-import - v1.0.13
* Import .sql into a MySQL database with Node.

@@ -41,3 +41,3 @@ * @author Rob Parham

}
importer.version = '1.0.12';
importer.version = '1.0.13';
importer.config = function(settings){

@@ -122,3 +122,3 @@ const valid = settings.hasOwnProperty('host') && typeof settings.host === "string" &&

if (!!quoteType) {
buffer_str = buffer.join('');
var buffer_str = buffer.join('');
var re_parse = buffer_str.substr(lastQuoteIndex + 1);

@@ -125,0 +125,0 @@ buffer = buffer_str.substr(0, lastQuoteIndex + 1).split('');

@@ -45,3 +45,3 @@ {

},
"version": "1.0.12"
"version": "1.0.13"
}

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

*Version 1.0.12*
*Version 1.0.13*

@@ -11,0 +11,0 @@ [![Build Status](https://api.travis-ci.org/Pamblam/mysql-import.svg?branch=master)](https://travis-ci.org/Pamblam/mysql-import/) [![Coverage Status](https://coveralls.io/repos/github/Pamblam/mysql-import/badge.svg?branch=master)](https://coveralls.io/github/Pamblam/mysql-import?branch=master)

@@ -35,3 +35,3 @@ /**

if (!!quoteType) {
buffer_str = buffer.join('');
var buffer_str = buffer.join('');
var re_parse = buffer_str.substr(lastQuoteIndex + 1);

@@ -38,0 +38,0 @@ buffer = buffer_str.substr(0, lastQuoteIndex + 1).split('');

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