Socket
Socket
Sign inDemoInstall

fxjs2

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxjs2 - npm Package Compare versions

Comparing version 0.12.2 to 0.12.3

2

package.json
{
"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);
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc