Comparing version 0.16.1 to 0.16.2
@@ -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) { |
{ | ||
"name": "fxjs2", | ||
"version": "0.16.1", | ||
"version": "0.16.2", | ||
"description": "Functional Extensions for modern Javascript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1412438
12813