@eslint-react/eff
Advanced tools
Comparing version 1.23.2-next.3 to 1.23.2-next.6
import * as Either from 'effect/Either'; | ||
export { Either as E }; | ||
import * as Equal from 'effect/Equal'; | ||
export { Equal }; | ||
import * as Function from 'effect/Function'; | ||
@@ -6,0 +4,0 @@ export { Function as F }; |
@@ -145,3 +145,3 @@ 'use strict'; | ||
var constNull = /* @__PURE__ */ constant(null); | ||
var constUndefined = /* @__PURE__ */ constant(void 0); | ||
var constUndefined = /* @__PURE__ */ constant(undefined); | ||
var constVoid = constUndefined; | ||
@@ -240,11 +240,2 @@ var flip = (f) => (...b) => (...a) => f(...a)(...b); | ||
// ../../../node_modules/.pnpm/effect@3.12.1/node_modules/effect/dist/esm/Equal.js | ||
var Equal_exports = {}; | ||
__export(Equal_exports, { | ||
equals: () => equals, | ||
equivalence: () => equivalence, | ||
isEqual: () => isEqual, | ||
symbol: () => symbol2 | ||
}); | ||
// ../../../node_modules/.pnpm/effect@3.12.1/node_modules/effect/dist/esm/internal/version.js | ||
@@ -281,4 +272,4 @@ var moduleVersion = "3.12.1"; | ||
var isFunction2 = isFunction; | ||
var isUndefined = (input) => input === void 0; | ||
var isNotUndefined = (input) => input !== void 0; | ||
var isUndefined = (input) => input === undefined; | ||
var isNotUndefined = (input) => input !== undefined; | ||
var isNull = (input) => input === null; | ||
@@ -292,4 +283,4 @@ var isNotNull = (input) => input !== null; | ||
var isTagged = /* @__PURE__ */ dual(2, (self, tag) => hasProperty(self, "_tag") && self["_tag"] === tag); | ||
var isNullable = (input) => input === null || input === void 0; | ||
var isNotNullable = (input) => input !== null && input !== void 0; | ||
var isNullable = (input) => input === null || input === undefined; | ||
var isNotNullable = (input) => input !== null && input !== undefined; | ||
var isError = (input) => input instanceof Error; | ||
@@ -479,3 +470,3 @@ var isUint8Array = (input) => input instanceof Uint8Array; | ||
enabled: false, | ||
tester: void 0 | ||
tester: undefined | ||
})); | ||
@@ -642,6 +633,6 @@ | ||
var redactableState = /* @__PURE__ */ globalValue("effect/Inspectable/redactableState", () => ({ | ||
fiberRefs: void 0 | ||
fiberRefs: undefined | ||
})); | ||
var redact = (u) => { | ||
if (isRedactable(u) && redactableState.fiberRefs !== void 0) { | ||
if (isRedactable(u) && redactableState.fiberRefs !== undefined) { | ||
return u[symbolRedactable](redactableState.fiberRefs); | ||
@@ -1112,4 +1103,4 @@ } | ||
var as = /* @__PURE__ */ dual(2, (self, b) => map2(self, () => b)); | ||
var asVoid = /* @__PURE__ */ as(void 0); | ||
var void_ = /* @__PURE__ */ some3(void 0); | ||
var asVoid = /* @__PURE__ */ as(undefined); | ||
var void_ = /* @__PURE__ */ some3(undefined); | ||
var flatMap2 = /* @__PURE__ */ dual(2, (self, f) => isNone2(self) ? none2() : f(self.value)); | ||
@@ -1235,3 +1226,2 @@ var andThen2 = /* @__PURE__ */ dual(2, (self, f) => flatMap2(self, (a) => { | ||
exports.E = Either_exports; | ||
exports.Equal = Equal_exports; | ||
exports.F = Function_exports; | ||
@@ -1238,0 +1228,0 @@ exports.O = Option_exports; |
{ | ||
"name": "@eslint-react/eff", | ||
"version": "1.23.2-next.3", | ||
"version": "1.23.2-next.6", | ||
"description": "A subset of effect to produce a more lightweight version of the library.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/rEl1cx/eslint-react", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
78231
2451