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.2 to 0.0.3

8

fx.js

@@ -53,2 +53,4 @@ export const

push3 = (arr, a) => (arr.push(a), arr),
flatten = arr => [].concat(...arr),

@@ -86,3 +88,3 @@

hasIter(coll) ?
go(lmap(f, coll), _ => [..._]) :
all(lmap(f, coll)) :
reduce(

@@ -103,3 +105,3 @@ (res, [k, a]) => go(f(a), b => (res[k] = b, res)),

hasIter(coll) ?
go(lfilter(f, coll), _ => [..._]) :
all(lfilter(f, coll)) :
reduce(

@@ -127,2 +129,4 @@ (res, [k, a]) => go(f(a), b => (b && (res[k] = b), res)),

export const all = coll => reduce(push3, coll, []);
export const

@@ -129,0 +133,0 @@ uniqueBy = curry((f, coll) => {

{
"name": "fxjs2",
"version": "0.0.2",
"version": "0.0.3",
"description": "Functional Extensions for Javascript",

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

Sorry, the diff of this file is not supported yet

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