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

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.16.1 to 0.16.2

2

.internal/entriesDeepL.js

@@ -11,2 +11,3 @@ import entriesL from "../Lazy/entriesL.js";

import isObject from "../Strict/isObject.js";
import isString from "../Strict/isString.js";
import clonedIterableSymbol from "./clonedIterableSymbol.js";

@@ -31,2 +32,3 @@

[isArray, arr => arr.slice()],
[isString, identity],
[isIterable, cloneIterable],

@@ -33,0 +35,0 @@ [either(isObject, isFunction), entriesDeepL],

import go from "../Strict/go.js";
import isArray from "../Strict/isArray.js";
import isIterable from "../Strict/isIterable.js";
import isString from "../Strict/isString.js";
import not from "../Strict/not.js";

@@ -9,3 +10,7 @@ import reduce from "../Strict/reduce.js";

const isEntries = a => not(isArray(a)) && isIterable(a) && not(a[clonedIterable]);
const isEntries = a =>
not(isString(a)) &&
not(isArray(a)) &&
isIterable(a) &&
not(a[clonedIterable]) === true;

@@ -12,0 +17,0 @@ export default function objectDeep(entries) {

2

package.json
{
"name": "fxjs2",
"version": "0.16.1",
"version": "0.16.2",
"description": "Functional Extensions for modern 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