@doeixd/machine 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2192,6 +2192,15 @@ function tag(nameOrObj, props) {
2192
2192
  }
2193
2193
  return { tag: nameOrObj };
2194
2194
  }
2195
+ ((tag2) => {
2196
+ function factory2(name) {
2197
+ if (name) {
2198
+ return (props) => tag2(name, props);
2199
+ }
2200
+ return (name2) => (props) => tag2(name2, props);
2201
+ }
2202
+ tag2.factory = factory2;
2203
+ })(tag || (tag = {}));
2195
2204
  function isState2(machine2, tagValue) {
2196
2205
  return machine2.tag === tagValue;
2197
2206
  }