New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

all-of-just

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

all-of-just - npm Package Compare versions

Comparing version 0.16.3 to 0.17.0

index-8a336d21.js

2

arrays.js

@@ -1,3 +0,3 @@

export { a as cartesianProduct, g as compact, c as flattenIt, t as groupBy, d as index, e as insert, f as intersect, h as last, n as partition, o as permutations, p as range, q as remove, j as shuffle, m as sortBy, k as split, l as splitAt, i as tail, r as union, b as unique, s as zip } from './index-2ecd5e7c.js';
export { a as cartesianProduct, g as compact, c as flattenIt, t as groupBy, d as index, e as insert, f as intersect, h as last, n as partition, o as permutations, p as range, q as remove, j as shuffle, m as sortBy, k as split, l as splitAt, i as tail, r as union, b as unique, s as zip } from './index-8d4e90e8.js';
export { a as random } from './index-5fcb9b57.js';
//# sourceMappingURL=arrays.js.map

@@ -1,2 +0,2 @@

export { b as clone, c as compare, d as diff, a as diffApply, f as flush, e as pluck } from './index-4c059880.js';
export { b as clone, c as compare, d as diff, a as diffApply, f as flush, e as pluck } from './index-8a336d21.js';
//# sourceMappingURL=collection.js.map

@@ -1,4 +0,4 @@

export { b as collectionClone, c as collectionCompare, d as collectionDiff, a as collectionDiffApply, f as collectionFlush, e as collectionPluck } from './index-4c059880.js';
export { b as collectionClone, c as collectionCompare, d as collectionDiff, a as collectionDiffApply, f as collectionFlush, e as collectionPluck } from './index-8a336d21.js';
export { s as objectsDeepMapValues, c as objectsEntries, o as objectsExtend, f as objectsFilterObject, r as objectsFlipObject, l as objectsIsCircular, k as objectsIsEmpty, m as objectsIsPrimitive, i as objectsMapKeys, g as objectsMapObject, h as objectsMapValues, a as objectsMerge, e as objectsOmit, d as objectsPick, j as objectsReduceObject, n as objectsSafeGet, p as objectsSafeSet, q as objectsTypeof, b as objectsValues } from './index-2246e7da.js';
export { a as arraysCartesianProduct, g as arraysCompact, c as arraysFlattenIt, t as arraysGroupBy, d as arraysIndex, e as arraysInsert, f as arraysIntersect, h as arraysLast, n as arraysPartition, o as arraysPermutations, p as arraysRange, q as arraysRemove, j as arraysShuffle, m as arraysSortBy, k as arraysSplit, l as arraysSplitAt, i as arraysTail, r as arraysUnion, b as arraysUnique, s as arraysZip } from './index-2ecd5e7c.js';
export { a as arraysCartesianProduct, g as arraysCompact, c as arraysFlattenIt, t as arraysGroupBy, d as arraysIndex, e as arraysInsert, f as arraysIntersect, h as arraysLast, n as arraysPartition, o as arraysPermutations, p as arraysRange, q as arraysRemove, j as arraysShuffle, m as arraysSortBy, k as arraysSplit, l as arraysSplitAt, i as arraysTail, r as arraysUnion, b as arraysUnique, s as arraysZip } from './index-8d4e90e8.js';
export { a as arraysRandom, a as functionsRandom } from './index-5fcb9b57.js';

@@ -5,0 +5,0 @@ export { a as statisticsMean, b as statisticsMedian, c as statisticsMode, d as statisticsPercentile, g as statisticsSkewness, f as statisticsStandardDeviation, e as statisticsVariance } from './index-2e3ba07e.js';

@@ -59,2 +59,22 @@ declare module 'just-camel-case' {

declare module 'just-compare' {
// Definitions by: Justy Robles <https://github.com/justyrobles>
type Primitive = boolean | string | number | bigint | null | undefined;
function compare<T extends Primitive>(value1: T, value2: T): boolean;
function compare<T1 extends object, T2 extends T1>(
value1: Exclude<T1, Primitive>,
value2: Exclude<T2, Primitive>
): boolean;
function compare<T1 extends T2, T2 extends object>(
value1: Exclude<T1, Primitive>,
value2: Exclude<T2, Primitive>
): boolean;
export default compare;
}
declare module 'just-compose' {

@@ -61,0 +81,0 @@ function compose<A extends unknown[], B>(f0: (...a: A) => B): (...a: A) => B;

{
"name": "all-of-just",
"private": false,
"version": "0.16.3",
"version": "0.17.0",
"description": "A single collection of all of Just utility functions in one single library",

@@ -6,0 +6,0 @@ "files": [

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