@transformation/core
Advanced tools
Comparing version 5.1.0 to 5.1.1
{ | ||
"name": "@transformation/core", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"description": "Create transformation pipelines", | ||
@@ -33,3 +33,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "2c434a3d4349843a14acea6577a16e247a66ef31" | ||
"gitHead": "16310db8d6c73a64a83098a966042c99754ee52e" | ||
} |
@@ -9,7 +9,7 @@ const step = require("./step"); | ||
const seen = new Set(); | ||
let seen = new Set(); | ||
return step(async ({ take, put, CLOSED }) => { | ||
if (options.scope === "pipeline") { | ||
seen.clear(); | ||
seen = new Set(); | ||
} | ||
@@ -16,0 +16,0 @@ |
151668