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.
16 lines (12 loc) • 367 B
JavaScript
;
var _ = require("lodash");
var genRegex = /^function[\s]*\*/;
module.exports = {
activity: function activity(obj) {
return obj && obj instanceof require("../activities/activity");
},
template: function template(obj) {
return obj && obj instanceof require("../activities/template");
}
};
//# sourceMappingURL=is.js.map