Socket
Socket
Sign inDemoInstall

@yuuang/ffi-rs-linux-arm64-musl

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yuuang/ffi-rs-linux-arm64-musl - npm Package Compare versions

Comparing version 1.0.45 to 1.0.46

2

package.json
{
"name": "@yuuang/ffi-rs-linux-arm64-musl",
"version": "1.0.45",
"version": "1.0.46",
"os": [

@@ -5,0 +5,0 @@ "linux"

@@ -366,2 +366,19 @@ # ffi-rs

Similary, you can use `restoreExternal` to restore data from `pointer` which wrap by `createExternal`
```js
const external = createExternal({
paramsType: [DataType.DoubleArray],
paramsValue: [[1.1, 2.2]]
})
const restoreData = restoreExternal({
retType: [arrayConstructor({
type: DataType.DoubleArray,
length: 2
})],
paramsValue: external
})
deepStrictEqual(restoreData, [[1.1, 2.2]])
```
### Struct

@@ -368,0 +385,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