Comparing version 0.12.2 to 0.12.3
{ | ||
"name": "fxjs2", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"description": "Functional Extensions for modern Javascript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,8 +0,7 @@ | ||
import curry from "./curry.js"; | ||
import reduce from "./reduce.js"; | ||
import go1Sync from "../.internal/go1Sync.js"; | ||
import _go1 from "../.internal/go1Sync.js"; | ||
import go1 from "./go1.js"; | ||
export default curry(function tap(f, ...fs) { | ||
return (a, ...as) => go1(reduce(go1Sync, f(a, ...as), fs), _ => a); | ||
}); | ||
export default function tap(f, ...fs) { | ||
return (a, ...as) => go1(reduce(_go1, f(a, ...as), fs), _ => a); | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
59
1124996
11437