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

@libsql/core

Package Overview
Dependencies
Maintainers
3
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@libsql/core - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

3

lib-cjs/config.js

@@ -17,2 +17,3 @@ "use strict";

let syncUrl = config.syncUrl;
let syncInterval = config.syncInterval;
const intMode = "" + (config.intMode ?? "number");

@@ -28,2 +29,3 @@ if (intMode !== "number" && intMode !== "bigint" && intMode !== "string") {

syncUrl,
syncInterval,
intMode,

@@ -94,2 +96,3 @@ fetch: config.fetch,

syncUrl,
syncInterval,
intMode,

@@ -96,0 +99,0 @@ fetch: config.fetch,

@@ -17,2 +17,4 @@ /** Configuration object for {@link createClient}. */

syncUrl?: string;
/** Sync interval in seconds. */
syncInterval?: number;
/** Enables or disables TLS for `libsql:` URLs.

@@ -19,0 +21,0 @@ *

@@ -11,2 +11,3 @@ import type { Config, IntMode } from "./api.js";

syncUrl: string | undefined;
syncInterval: number | undefined;
intMode: IntMode;

@@ -13,0 +14,0 @@ fetch: Function | undefined;

@@ -14,2 +14,3 @@ import { LibsqlError } from "./api.js";

let syncUrl = config.syncUrl;
let syncInterval = config.syncInterval;
const intMode = "" + (config.intMode ?? "number");

@@ -25,2 +26,3 @@ if (intMode !== "number" && intMode !== "bigint" && intMode !== "string") {

syncUrl,
syncInterval,
intMode,

@@ -91,2 +93,3 @@ fetch: config.fetch,

syncUrl,
syncInterval,
intMode,

@@ -93,0 +96,0 @@ fetch: config.fetch,

2

package.json
{
"name": "@libsql/core",
"version": "0.5.2",
"version": "0.5.3",
"keywords": [

@@ -5,0 +5,0 @@ "libsql",

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