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

koffi

Package Overview
Dependencies
Maintainers
1
Versions
226
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koffi - npm Package Compare versions

Comparing version 2.3.11 to 2.3.12

build/2.3.12/koffi_darwin_arm64/koffi.node

7

CHANGELOG.md

@@ -7,2 +7,9 @@ # Changelog

#### Koffi 2.3.12
**Main fixes:**
- Fix broken syntax in TS definition file
- Add missing exported properties in TS file
#### Koffi 2.3.11

@@ -9,0 +16,0 @@

4

package.json
{
"name": "koffi",
"version": "2.3.11",
"stable": "2.3.11",
"version": "2.3.12",
"stable": "2.3.12",
"description": "Fast and simple C FFI (foreign function interface) for Node.js",

@@ -6,0 +6,0 @@ "keywords": [

@@ -25,5 +25,5 @@ // Copyright 2023 Niels Martignène <niels.martignene@protonmail.com>

interface IKoffiCType { __brand: 'IKoffiCType' };
interface IKoffiPointerCast { __brand: 'IKoffiPointerCast' };
interface IKoffiRegisteredCallback { __brand: 'IKoffiRegisteredCallback' };
interface IKoffiCType { __brand: 'IKoffiCType' }
interface IKoffiPointerCast { __brand: 'IKoffiPointerCast' }
interface IKoffiRegisteredCallback { __brand: 'IKoffiRegisteredCallback' }

@@ -83,3 +83,3 @@ type PrimitiveKind = 'Void' | 'Bool' | 'Int8' | 'UInt8' | 'Int16' | 'Int16S' | 'UInt16' | 'UInt16S' |

thiscall(name: string, result: TypeSpec, arguments: TypeSpec[]): KoffiFunction;
};
}

@@ -135,2 +135,5 @@ export function struct(name: string, def: Record<string, TypeSpecWithAlignment>): IKoffiCType;

export function stats(): Record<string, unknown>;
export let internal: Boolean;
export let extension: String;
}
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