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

worksmith

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

worksmith - npm Package Compare versions

Comparing version 0.1.0-0 to 0.1.1

ReleaseNotes.md

17

index.js

@@ -46,2 +46,19 @@ var debug = require('debug')('workflow:common')

createAdapter: function(object) {
return function getType(name) {
var method = object[name];
return function define(step) {
return function build(context) {
return function execute(done) {
var args = (context.get(step.arguments) || [])
.map(function(arg) {
return context.get(arg);
})
var result = method.apply(object, args)
done(undefined, result);
}
}
}
}
},
configure: function(options) {

@@ -48,0 +65,0 @@ _.extend(settings, options);

2

package.json
{
"name": "worksmith",
"version": "0.1.0-0",
"version": "0.1.1",
"description": "A purely functional workflow engine ",

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

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