workflow-4-node
Version:
Workflow 4 Node is a .NET Workflow Foundation like framework for Node.js. The goal is to reach feature equivalence and beyond.
17 lines (11 loc) • 314 B
JavaScript
;
var Block = require("./block");
var util = require("util");
function Workflow(name) {
Block.call(this);
this.reserved("version", 0);
this.reserved("name", name ? name.toString() : "");
}
util.inherits(Workflow, Block);
module.exports = Workflow;
//# sourceMappingURL=workflow.js.map