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

libsql-stateless

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libsql-stateless - npm Package Compare versions

Comparing version 2.5.2 to 2.5.3

1

lib-cjs/functions.js

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

}
//inner end
/**

@@ -26,0 +25,0 @@ * @async

@@ -1,9 +0,2 @@

import { BatchReqStep, BatchStreamResOkData, Config, PipelineResErr, SQLStatement, StatementResOkData, StreamResErrData } from "./types";
type Result<T, E> = {
isOk: true;
val: T;
} | {
isOk: false;
err: E;
};
import { BatchReqStep, BatchStreamResOkData, Config, PipelineResErr, Result, SQLStatement, StatementResOkData, StreamResErrData } from "./types";
/**

@@ -32,2 +25,1 @@ * @async

export declare function libsqlServerCompatCheck(conf: Config): Promise<Result<null, null>>;
export {};

@@ -20,3 +20,2 @@ async function hranaFetch(s) {

}
//inner end
/**

@@ -23,0 +22,0 @@ * @async

7

lib-esm/types.d.ts

@@ -0,1 +1,8 @@

export type Result<T, E> = {
isOk: true;
val: T;
} | {
isOk: false;
err: E;
};
export type Config = {

@@ -2,0 +9,0 @@ db_url: string;

{
"name": "libsql-stateless",
"version": "2.5.2",
"version": "2.5.3",
"homepage": "https://github.com/DaBigBlob/libsql-stateless#readme",

@@ -5,0 +5,0 @@ "repository": {

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