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

@minatojs/driver-sqlite

Package Overview
Dependencies
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@minatojs/driver-sqlite - npm Package Compare versions

Comparing version 3.8.4 to 3.8.5

2

lib/index.js

@@ -135,2 +135,4 @@ "use strict";

value = +value;
else if (value instanceof RegExp)
value = value.source;
return super.escape(value, field);

@@ -137,0 +139,0 @@ }

6

package.json
{
"name": "@minatojs/driver-sqlite",
"version": "3.8.4",
"version": "3.8.5",
"description": "SQLite Driver for Minato",

@@ -32,6 +32,6 @@ "main": "lib/index.js",

"devDependencies": {
"@minatojs/tests": "^1.8.5"
"@minatojs/tests": "^1.8.6"
},
"dependencies": {
"@minatojs/sql-utils": "^4.2.2",
"@minatojs/sql-utils": "^4.2.3",
"@minatojs/sql.js": "^3.1.0",

@@ -38,0 +38,0 @@ "cosmokit": "^1.5.2",

@@ -103,2 +103,3 @@ import { clone, deepEqual, Dict, difference, isNullable, makeArray } from 'cosmokit'

if (value instanceof Date) value = +value
else if (value instanceof RegExp) value = value.source
return super.escape(value, field)

@@ -105,0 +106,0 @@ }

Sorry, the diff of this file is not supported yet

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