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

@signalapp/better-sqlite3

Package Overview
Dependencies
Maintainers
5
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signalapp/better-sqlite3 - npm Package Compare versions

Comparing version

to
8.2.0-rc.1

1

index.d.ts

@@ -117,2 +117,3 @@ // Type definitions for better-sqlite3 7.6

nativeBinding?: string | undefined;
tokenizer?: (value: string) => ReadonlyArray<string | number>;
}

@@ -119,0 +120,0 @@

5

lib/database.js

@@ -36,2 +36,3 @@ 'use strict';

const verbose = 'verbose' in options ? options.verbose : null;
const tokenizer = 'tokenizer' in options ? options.tokenizer : null;
const nativeBindingPath = 'nativeBinding' in options ? options.nativeBinding : null;

@@ -65,3 +66,3 @@

Object.defineProperties(this, {
[util.cppdb]: { value: new addon.Database(filename, filenameGiven, anonymous, readonly, fileMustExist, timeout, verbose || null, buffer || null) },
[util.cppdb]: { value: new addon.Database(filename, filenameGiven, anonymous, readonly, fileMustExist, timeout, verbose || null, buffer || null, tokenizer || noop) },
...wrappers.getters,

@@ -78,2 +79,4 @@ });

function noop() {}
const wrappers = require('./methods/wrappers');

@@ -80,0 +83,0 @@ Database.prototype.prepare = wrappers.prepare;

{
"name": "@signalapp/better-sqlite3",
"version": "8.1.1",
"version": "8.2.0-rc.1",
"description": "The fastest and simplest library for SQLite3 in Node.js.",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/WiseLibs/better-sqlite3",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet