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

@voidwalkers/void-functions

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voidwalkers/void-functions - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

package.json
{
"name": "@voidwalkers/void-functions",
"version": "0.1.3",
"version": "0.1.4",
"description": "Functions for Void Walkers Void",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -5,3 +5,3 @@ import {FunctionType} from '#src/lib/constants.js';

export function registerCallFunction(name, func) {
export function registerCallFunction(name, func, options) {
if (!registerHandler) {

@@ -11,6 +11,6 @@ throw new Error('Register handler not set');

registerHandler(FunctionType.Call, name, func);
registerHandler(FunctionType.Call, name, func, options);
}
export function registerHttpFunction(name, func) {
export function registerHttpFunction(name, func, options) {
if (!registerHandler) {

@@ -20,3 +20,3 @@ throw new Error('Register handler not set');

registerHandler(FunctionType.Http, name, func);
registerHandler(FunctionType.Http, name, func, options);
}

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