Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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.16 to 0.0.17

17

fx.js

@@ -113,3 +113,3 @@ export const

L.flatMap = curry((f, iter) => L.flat(L.map(f, iter)));
L.flatMap = L.flat_map = curry((f, iter) => L.flat(L.map(f, iter)));

@@ -221,4 +221,12 @@ export const

flatMap = curry(pipe(L.map, flat));
deepFlat = deepFlatten,
deep_flat = deepFlat,
deep_flatten = deepFlat,
flatMap = curry(pipe(L.map, flat)),
flat_map = flatMap;
export const

@@ -460,4 +468,7 @@ uniqueBy = curry((f, coll) => {

sortBy = baseSortBy(-1, 1),
sort_by = sortBy,
sortByDesc = baseSortBy(1, -1),
sort_by_desc = sortByDesc,
sort = sortBy(identity),
sortDesc = sortByDesc(identity);
sortDesc = sortByDesc(identity),
sort_desc = sortDesc;

2

package.json
{
"name": "fxjs2",
"version": "0.0.16",
"version": "0.0.17",
"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