Socket
Socket
Sign inDemoInstall

fxjs2

Package Overview
Dependencies
Maintainers
1
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.0.12 to 0.0.13

4

fx.js

@@ -257,3 +257,3 @@ // FxJS 0.0.12

maxBy = curry((f, coll) =>
reduce((a, b) => f(a) > f(b) ? a : b, coll)),
reduce((a, b) => f(a) >= f(b) ? a : b, coll)),

@@ -265,3 +265,3 @@ max_by = maxBy,

minBy = curry((f, coll) =>
reduce((a, b) => f(a) > f(b) ? b : a, coll)),
reduce((a, b) => f(a) <= f(b) ? a : b, coll)),

@@ -268,0 +268,0 @@ min_by = minBy,

{
"name": "fxjs2",
"version": "0.0.12",
"version": "0.0.13",
"description": "Functional Extensions for Javascript",

@@ -5,0 +5,0 @@ "main": "index.js",

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