@eslint-react/eff 3.0.0-next.62 → 3.0.0-next.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -9
- package/dist/index.js +1 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
//#region src/index.d.ts
|
|
2
|
-
/**
|
|
3
|
-
* alias for `undefined`.
|
|
4
|
-
*/
|
|
5
|
-
type unit = undefined;
|
|
6
|
-
/**
|
|
7
|
-
* alias for `undefined`.
|
|
8
|
-
*/
|
|
9
|
-
declare const unit: undefined;
|
|
10
2
|
/**
|
|
11
3
|
* Simplifies a complex type intersection into a flat object type for better readability
|
|
12
4
|
* in IDE tooltips and error messages.
|
|
@@ -457,4 +449,4 @@ declare function getOrElseUpdate<K, V>(map: Map<K, V>, key: K, callback: () => V
|
|
|
457
449
|
*/
|
|
458
450
|
declare function tryAddToSet<T>(set: Set<T>, value: T): boolean;
|
|
459
451
|
//#endregion
|
|
460
|
-
export { NarrowedTo, Pretty, absurd, apply, compose, constFalse, constNull, constTrue, constVoid, constant, dual, flip, flow, getOrElse, getOrElseUpdate, identity, isArray, isFunction, isObject, isTruthy, not, or, pipe, pipeArguments, tryAddToSet, tupled,
|
|
452
|
+
export { NarrowedTo, Pretty, absurd, apply, compose, constFalse, constNull, constTrue, constVoid, constant, dual, flip, flow, getOrElse, getOrElseUpdate, identity, isArray, isFunction, isObject, isTruthy, not, or, pipe, pipeArguments, tryAddToSet, tupled, untupled };
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
//#region src/index.ts
|
|
2
|
-
/**
|
|
3
|
-
* alias for `undefined`.
|
|
4
|
-
*/
|
|
5
|
-
const unit = void 0;
|
|
6
2
|
function not(predicate) {
|
|
7
3
|
return (data) => !predicate(data);
|
|
8
4
|
}
|
|
@@ -383,4 +379,4 @@ function tryAddToSet(set, value) {
|
|
|
383
379
|
}
|
|
384
380
|
|
|
385
381
|
//#endregion
|
|
386
|
-
export { absurd, apply, compose, constFalse, constNull, constTrue, constVoid, constant, dual, flip, flow, getOrElse, getOrElseUpdate, identity, isArray, isFunction, isObject, isTruthy, not, or, pipe, pipeArguments, tryAddToSet, tupled,
|
|
382
|
+
export { absurd, apply, compose, constFalse, constNull, constTrue, constVoid, constant, dual, flip, flow, getOrElse, getOrElseUpdate, identity, isArray, isFunction, isObject, isTruthy, not, or, pipe, pipeArguments, tryAddToSet, tupled, untupled };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eff",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.64",
|
|
4
4
|
"description": "JavaScript and TypeScript utilities (previously some re-exports of the effect library).",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|