effect 3.10.17 → 3.10.18
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/cjs/internal/stream.js +1 -1
- package/dist/cjs/internal/stream.js.map +1 -1
- package/dist/cjs/internal/version.js +1 -1
- package/dist/esm/internal/stream.js +1 -1
- package/dist/esm/internal/stream.js.map +1 -1
- package/dist/esm/internal/version.js +1 -1
- package/package.json +1 -1
- package/src/internal/stream.ts +1 -1
- package/src/internal/version.ts +1 -1
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.setCurrentVersion = exports.getCurrentVersion = void 0;
|
|
7
|
-
let moduleVersion = "3.10.
|
|
7
|
+
let moduleVersion = "3.10.18";
|
|
8
8
|
const getCurrentVersion = () => moduleVersion;
|
|
9
9
|
exports.getCurrentVersion = getCurrentVersion;
|
|
10
10
|
const setCurrentVersion = version => {
|
|
@@ -1464,7 +1464,7 @@ export const peel = /*#__PURE__*/dual(2, (self, sink) => {
|
|
|
1464
1464
|
}))), Effect.flatten);
|
|
1465
1465
|
});
|
|
1466
1466
|
/** @internal */
|
|
1467
|
-
export const partition = /*#__PURE__*/dual(args => typeof args[1] === "function", (self, predicate, options) => partitionEither(self, a => Effect.succeed(predicate(a) ? Either.
|
|
1467
|
+
export const partition = /*#__PURE__*/dual(args => typeof args[1] === "function", (self, predicate, options) => partitionEither(self, a => Effect.succeed(predicate(a) ? Either.right(a) : Either.left(a)), options));
|
|
1468
1468
|
/** @internal */
|
|
1469
1469
|
export const partitionEither = /*#__PURE__*/dual(args => typeof args[1] === "function", (self, predicate, options) => pipe(mapEffectSequential(self, predicate), distributedWith({
|
|
1470
1470
|
size: 2,
|