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

@bjoern.bg/hello-wasm

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bjoern.bg/hello-wasm - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

5

hello_wasm.d.ts

@@ -7,7 +7,4 @@ /* tslint:disable */

/**
* @param {number} x
* @param {number} y
* @param {number} z
* @returns {number}
*/
export function simplex_noise(x: number, y: number, z: number): number;
export function simplex_noise(): number;

9

hello_wasm.js

@@ -65,9 +65,6 @@ import * as wasm from './hello_wasm_bg.wasm';

/**
* @param {number} x
* @param {number} y
* @param {number} z
* @returns {number}
*/
export function simplex_noise(x, y, z) {
const ret = wasm.simplex_noise(x, y, z);
export function simplex_noise() {
const ret = wasm.simplex_noise();
return ret;

@@ -84,5 +81,5 @@ }

export const __wbg_alert_a82e28191394ad16 = function(arg0, arg1) {
export const __wbg_alert_0864dca4fb6ee835 = function(arg0, arg1) {
alert(getStringFromWasm(arg0, arg1));
};

@@ -7,3 +7,3 @@ {

"description": "A sample project with wasm-pack",
"version": "0.1.7",
"version": "0.1.8",
"license": "MIT/Apache-2.0",

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

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