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

@hypermode/functions-as

Package Overview
Dependencies
Maintainers
4
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hypermode/functions-as - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

2

package.json
{
"name": "@hypermode/functions-as",
"version": "0.6.0",
"version": "0.6.1",
"description": "Hypermode library for AssemblyScript functions",

@@ -5,0 +5,0 @@ "author": "Hypermode, Inc.",

@@ -109,5 +109,8 @@ import binaryen from "assemblyscript/lib/binaryen.js";

const results = [];
this.program.moduleImports.get("hypermode").forEach((v, k) => {
results.push({ name: k, function: v.internalName });
});
const hypermodeImports = this.program.moduleImports.get("hypermode");
if (hypermodeImports) {
hypermodeImports.forEach((v, k) => {
results.push({ name: k, function: v.internalName });
});
}
return results;

@@ -114,0 +117,0 @@ }

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