@duplojs/utils 1.3.20 → 1.3.22
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/README.md +21 -1
- package/dist/array/index.cjs +3 -0
- package/dist/array/index.d.ts +1 -0
- package/dist/array/index.mjs +1 -0
- package/dist/array/select.cjs +35 -0
- package/dist/array/select.d.ts +18 -0
- package/dist/array/select.mjs +32 -0
- package/dist/clean/constraint/base.d.ts +1 -1
- package/dist/clean/constraint/defaultConstraint/number.d.ts +4 -4
- package/dist/clean/constraint/defaultConstraint/string.d.ts +3 -3
- package/dist/clean/entity.cjs +4 -0
- package/dist/clean/entity.d.ts +1 -0
- package/dist/clean/entity.mjs +4 -0
- package/dist/clean/flag.d.ts +1 -0
- package/dist/clean/repository.d.ts +4 -4
- package/dist/clean/useCase.cjs +4 -3
- package/dist/clean/useCase.d.ts +2 -2
- package/dist/clean/useCase.mjs +4 -3
- package/dist/common/index.d.ts +1 -1
- package/dist/common/{toJson.d.ts → toJSON.d.ts} +1 -1
- package/dist/dataParser/extended/object.cjs +16 -4
- package/dist/dataParser/extended/object.d.ts +13 -5
- package/dist/dataParser/extended/object.mjs +20 -8
- package/dist/dataParser/identifier.d.ts +2 -2
- package/dist/dataParser/index.cjs +4 -0
- package/dist/dataParser/index.mjs +4 -4
- package/dist/dataParser/parsers/array/index.d.ts +1 -1
- package/dist/dataParser/parsers/object/omit.cjs +5 -1
- package/dist/dataParser/parsers/object/omit.d.ts +2 -1
- package/dist/dataParser/parsers/object/omit.mjs +5 -2
- package/dist/dataParser/parsers/object/partial.cjs +5 -1
- package/dist/dataParser/parsers/object/partial.d.ts +1 -0
- package/dist/dataParser/parsers/object/partial.mjs +5 -2
- package/dist/dataParser/parsers/object/pick.cjs +6 -2
- package/dist/dataParser/parsers/object/pick.d.ts +3 -2
- package/dist/dataParser/parsers/object/pick.mjs +6 -3
- package/dist/dataParser/parsers/object/required.cjs +5 -1
- package/dist/dataParser/parsers/object/required.d.ts +1 -0
- package/dist/dataParser/parsers/object/required.mjs +5 -2
- package/dist/dataParser/parsers/refine.cjs +1 -1
- package/dist/dataParser/parsers/refine.d.ts +1 -1
- package/dist/dataParser/parsers/refine.mjs +1 -1
- package/dist/either/future/create.d.ts +1 -1
- package/dist/generator/asyncChunk.cjs +24 -0
- package/dist/generator/asyncChunk.d.ts +2 -0
- package/dist/generator/asyncChunk.mjs +22 -0
- package/dist/generator/asyncLoop.d.ts +3 -10
- package/dist/generator/asyncMap.cjs +1 -1
- package/dist/generator/asyncMap.d.ts +2 -2
- package/dist/generator/asyncMap.mjs +1 -1
- package/dist/generator/index.cjs +2 -0
- package/dist/generator/index.d.ts +1 -0
- package/dist/generator/index.mjs +1 -0
- package/dist/generator/loop.d.ts +4 -5
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +1 -1
- package/dist/metadata.json +4419 -0
- package/dist/object/omit.d.ts +2 -2
- package/dist/object/pick.d.ts +2 -2
- package/dist/string/capitalize.cjs +1 -1
- package/dist/string/capitalize.mjs +1 -1
- package/dist/string/uncapitalize.cjs +1 -1
- package/dist/string/uncapitalize.mjs +1 -1
- package/package.json +37 -5
- /package/dist/common/{toJson.cjs → toJSON.cjs} +0 -0
- /package/dist/common/{toJson.mjs → toJSON.mjs} +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type MergeDefinition } from "../../../dataParser/types";
|
|
2
|
-
import { type DataParserDefinitionObject, type DataParserObject } from ".";
|
|
2
|
+
import { type DataParserObjectShape, type DataParserDefinitionObject, type DataParserObject } from ".";
|
|
3
3
|
import { type SimplifyTopLevel, type NeverCoalescing } from "../../../common";
|
|
4
|
+
export declare function omitShape(shape: DataParserObjectShape, omitObject: Partial<Record<string, true>>): DataParserObjectShape;
|
|
4
5
|
export declare function omit<GenericDataParserObject extends DataParserObject, const GenericOmitObject extends Partial<Record<keyof GenericDataParserObject["definition"]["shape"], true>>, const GenericDefinition extends Partial<Omit<DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(dataParser: GenericDataParserObject, omitObject: GenericOmitObject, definition?: GenericDefinition): DataParserObject<MergeDefinition<DataParserDefinitionObject, NeverCoalescing<GenericDefinition, {}> & {
|
|
5
6
|
readonly shape: SimplifyTopLevel<Omit<GenericDataParserObject["definition"]["shape"], keyof GenericOmitObject>>;
|
|
6
7
|
}>>;
|
|
@@ -5,9 +5,12 @@ import { isKeyof } from '../../../string/isKeyof.mjs';
|
|
|
5
5
|
import { entries } from '../../../object/entries.mjs';
|
|
6
6
|
import { fromEntries } from '../../../object/fromEntries.mjs';
|
|
7
7
|
|
|
8
|
+
function omitShape(shape, omitObject) {
|
|
9
|
+
return pipe(shape, entries, filter(([key]) => !isKeyof(key, omitObject)), fromEntries);
|
|
10
|
+
}
|
|
8
11
|
function omit(dataParser, omitObject, definition) {
|
|
9
|
-
const newShape =
|
|
12
|
+
const newShape = omitShape(dataParser.definition.shape, omitObject);
|
|
10
13
|
return object(newShape, definition);
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
export { omit };
|
|
16
|
+
export { omit, omitShape };
|
|
@@ -12,9 +12,13 @@ var entry = require('../../../object/entry.cjs');
|
|
|
12
12
|
var entries = require('../../../object/entries.cjs');
|
|
13
13
|
var fromEntries = require('../../../object/fromEntries.cjs');
|
|
14
14
|
|
|
15
|
+
function partialShape(shape) {
|
|
16
|
+
return pipe.pipe(shape, entries.entries, map.map(([key, dataParser]) => pipe.pipe(identifier.identifier(dataParser, optional.optionalKind), when.whenIsRight(forward.forward), when$1.whenIsLeft(optional.optional), (dataParser) => entry.entry(key, dataParser))), fromEntries.fromEntries);
|
|
17
|
+
}
|
|
15
18
|
function partial(dataParser, definition) {
|
|
16
|
-
const newShape =
|
|
19
|
+
const newShape = partialShape(dataParser.definition.shape);
|
|
17
20
|
return index.object(newShape, definition);
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
exports.partial = partial;
|
|
24
|
+
exports.partialShape = partialShape;
|
|
@@ -9,6 +9,7 @@ export type PartialDataParserObject<GenericShape extends DataParserObjectShape>
|
|
|
9
9
|
coalescingValue: unknown;
|
|
10
10
|
}>;
|
|
11
11
|
}>;
|
|
12
|
+
export declare function partialShape(shape: DataParserObjectShape): DataParserObjectShape;
|
|
12
13
|
export declare function partial<GenericDataParserObject extends DataParserObject, const GenericDefinition extends Partial<Omit<DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(dataParser: GenericDataParserObject, definition?: GenericDefinition): DataParserObject<MergeDefinition<DataParserDefinitionObject, NeverCoalescing<GenericDefinition, {}> & {
|
|
13
14
|
readonly shape: PartialDataParserObject<GenericDataParserObject["definition"]["shape"]>;
|
|
14
15
|
}>>;
|
|
@@ -10,9 +10,12 @@ import { entry } from '../../../object/entry.mjs';
|
|
|
10
10
|
import { entries } from '../../../object/entries.mjs';
|
|
11
11
|
import { fromEntries } from '../../../object/fromEntries.mjs';
|
|
12
12
|
|
|
13
|
+
function partialShape(shape) {
|
|
14
|
+
return pipe(shape, entries, map(([key, dataParser]) => pipe(identifier(dataParser, optionalKind), whenIsRight(forward), whenIsLeft(optional), (dataParser) => entry(key, dataParser))), fromEntries);
|
|
15
|
+
}
|
|
13
16
|
function partial(dataParser, definition) {
|
|
14
|
-
const newShape =
|
|
17
|
+
const newShape = partialShape(dataParser.definition.shape);
|
|
15
18
|
return object(newShape, definition);
|
|
16
19
|
}
|
|
17
20
|
|
|
18
|
-
export { partial };
|
|
21
|
+
export { partial, partialShape };
|
|
@@ -7,9 +7,13 @@ var isKeyof = require('../../../string/isKeyof.cjs');
|
|
|
7
7
|
var entries = require('../../../object/entries.cjs');
|
|
8
8
|
var fromEntries = require('../../../object/fromEntries.cjs');
|
|
9
9
|
|
|
10
|
-
function
|
|
11
|
-
|
|
10
|
+
function pickShape(shape, pickObject) {
|
|
11
|
+
return pipe.pipe(shape, entries.entries, filter.filter(([key]) => isKeyof.isKeyof(key, pickObject)), fromEntries.fromEntries);
|
|
12
|
+
}
|
|
13
|
+
function pick(dataParser, pickObject, definition) {
|
|
14
|
+
const newShape = pickShape(dataParser.definition.shape, pickObject);
|
|
12
15
|
return index.object(newShape, definition);
|
|
13
16
|
}
|
|
14
17
|
|
|
15
18
|
exports.pick = pick;
|
|
19
|
+
exports.pickShape = pickShape;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type MergeDefinition } from "../../../dataParser/types";
|
|
2
|
-
import { type DataParserDefinitionObject, type DataParserObject } from ".";
|
|
2
|
+
import { type DataParserObjectShape, type DataParserDefinitionObject, type DataParserObject } from ".";
|
|
3
3
|
import { type SimplifyTopLevel, type NeverCoalescing, type Adaptor } from "../../../common";
|
|
4
|
-
export declare function
|
|
4
|
+
export declare function pickShape(shape: DataParserObjectShape, pickObject: Partial<Record<string, true>>): DataParserObjectShape;
|
|
5
|
+
export declare function pick<GenericDataParserObject extends DataParserObject, const GenericOmitObject extends Partial<Record<keyof GenericDataParserObject["definition"]["shape"], true>>, const GenericDefinition extends Partial<Omit<DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(dataParser: GenericDataParserObject, pickObject: GenericOmitObject, definition?: GenericDefinition): DataParserObject<MergeDefinition<DataParserDefinitionObject, NeverCoalescing<GenericDefinition, {}> & {
|
|
5
6
|
readonly shape: SimplifyTopLevel<Pick<GenericDataParserObject["definition"]["shape"], Adaptor<keyof GenericOmitObject, keyof GenericDataParserObject["definition"]["shape"]>>>;
|
|
6
7
|
}>>;
|
|
@@ -5,9 +5,12 @@ import { isKeyof } from '../../../string/isKeyof.mjs';
|
|
|
5
5
|
import { entries } from '../../../object/entries.mjs';
|
|
6
6
|
import { fromEntries } from '../../../object/fromEntries.mjs';
|
|
7
7
|
|
|
8
|
-
function
|
|
9
|
-
|
|
8
|
+
function pickShape(shape, pickObject) {
|
|
9
|
+
return pipe(shape, entries, filter(([key]) => isKeyof(key, pickObject)), fromEntries);
|
|
10
|
+
}
|
|
11
|
+
function pick(dataParser, pickObject, definition) {
|
|
12
|
+
const newShape = pickShape(dataParser.definition.shape, pickObject);
|
|
10
13
|
return object(newShape, definition);
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
export { pick };
|
|
16
|
+
export { pick, pickShape };
|
|
@@ -12,9 +12,13 @@ var entry = require('../../../object/entry.cjs');
|
|
|
12
12
|
var entries = require('../../../object/entries.cjs');
|
|
13
13
|
var fromEntries = require('../../../object/fromEntries.cjs');
|
|
14
14
|
|
|
15
|
+
function requiredShape(shape) {
|
|
16
|
+
return pipe.pipe(shape, entries.entries, map.map(([key, dataParser]) => pipe.pipe(identifier.identifier(dataParser, optional.optionalKind), when.whenIsRight((dataParser) => dataParser.definition.inner), when$1.whenIsLeft(forward.forward), (dataParser) => entry.entry(key, dataParser))), fromEntries.fromEntries);
|
|
17
|
+
}
|
|
15
18
|
function required(dataParser, definition) {
|
|
16
|
-
const newShape =
|
|
19
|
+
const newShape = requiredShape(dataParser.definition.shape);
|
|
17
20
|
return index.object(newShape, definition);
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
exports.required = required;
|
|
24
|
+
exports.requiredShape = requiredShape;
|
|
@@ -5,6 +5,7 @@ import { type DataParserOptional } from "../optional";
|
|
|
5
5
|
export type RequireDataParserObject<GenericShape extends DataParserObjectShape> = SimplifyTopLevel<{
|
|
6
6
|
[Prop in keyof GenericShape]: GenericShape[Prop] extends DataParserOptional<any> ? GenericShape[Prop]["definition"]["inner"] : GenericShape[Prop];
|
|
7
7
|
}>;
|
|
8
|
+
export declare function requiredShape(shape: DataParserObjectShape): DataParserObjectShape;
|
|
8
9
|
export declare function required<GenericDataParserObject extends DataParserObject, const GenericDefinition extends Partial<Omit<DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(dataParser: GenericDataParserObject, definition?: GenericDefinition): DataParserObject<MergeDefinition<DataParserDefinitionObject, NeverCoalescing<GenericDefinition, {}> & {
|
|
9
10
|
readonly shape: RequireDataParserObject<GenericDataParserObject["definition"]["shape"]>;
|
|
10
11
|
}>>;
|
|
@@ -10,9 +10,12 @@ import { entry } from '../../../object/entry.mjs';
|
|
|
10
10
|
import { entries } from '../../../object/entries.mjs';
|
|
11
11
|
import { fromEntries } from '../../../object/fromEntries.mjs';
|
|
12
12
|
|
|
13
|
+
function requiredShape(shape) {
|
|
14
|
+
return pipe(shape, entries, map(([key, dataParser]) => pipe(identifier(dataParser, optionalKind), whenIsRight((dataParser) => dataParser.definition.inner), whenIsLeft(forward), (dataParser) => entry(key, dataParser))), fromEntries);
|
|
15
|
+
}
|
|
13
16
|
function required(dataParser, definition) {
|
|
14
|
-
const newShape =
|
|
17
|
+
const newShape = requiredShape(dataParser.definition.shape);
|
|
15
18
|
return object(newShape, definition);
|
|
16
19
|
}
|
|
17
20
|
|
|
18
|
-
export { required };
|
|
21
|
+
export { required, requiredShape };
|
|
@@ -4,7 +4,7 @@ var base = require('../base.cjs');
|
|
|
4
4
|
var error = require('../error.cjs');
|
|
5
5
|
var kind = require('../kind.cjs');
|
|
6
6
|
|
|
7
|
-
const dataParserCheckerRefineKind = kind.createDataParserKind("
|
|
7
|
+
const dataParserCheckerRefineKind = kind.createDataParserKind("refine");
|
|
8
8
|
function checkerRefine(theFunction, definition) {
|
|
9
9
|
return base.dataParserCheckerInit(dataParserCheckerRefineKind, {
|
|
10
10
|
definition: {
|
|
@@ -4,7 +4,7 @@ import { type AssignObjects } from "../../object";
|
|
|
4
4
|
export interface DataParserCheckerDefinitionRefine extends DataParserCheckerDefinition {
|
|
5
5
|
theFunction(input: unknown): boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare const dataParserCheckerRefineKind: import("../../common").KindHandler<import("../../common").KindDefinition<"@DuplojsUtilsDataParser/
|
|
7
|
+
export declare const dataParserCheckerRefineKind: import("../../common").KindHandler<import("../../common").KindDefinition<"@DuplojsUtilsDataParser/refine", unknown>>;
|
|
8
8
|
type _DataParserCheckerRefine<GenericDefinition extends DataParserCheckerDefinitionRefine> = (Kind<typeof dataParserCheckerRefineKind.definition> & DataParserChecker<GenericDefinition, string>);
|
|
9
9
|
export interface DataParserCheckerRefine<GenericDefinition extends DataParserCheckerDefinitionRefine = DataParserCheckerDefinitionRefine> extends _DataParserCheckerRefine<GenericDefinition> {
|
|
10
10
|
}
|
|
@@ -2,7 +2,7 @@ import { dataParserCheckerInit } from '../base.mjs';
|
|
|
2
2
|
import { SymbolDataParserErrorIssue } from '../error.mjs';
|
|
3
3
|
import { createDataParserKind } from '../kind.mjs';
|
|
4
4
|
|
|
5
|
-
const dataParserCheckerRefineKind = createDataParserKind("
|
|
5
|
+
const dataParserCheckerRefineKind = createDataParserKind("refine");
|
|
6
6
|
function checkerRefine(theFunction, definition) {
|
|
7
7
|
return dataParserCheckerInit(dataParserCheckerRefineKind, {
|
|
8
8
|
definition: {
|
|
@@ -15,7 +15,7 @@ declare const kind = "kind-future-either";
|
|
|
15
15
|
export declare class Future<const GenericValue extends unknown = unknown> extends Promise<ComputeFutureEitherResult<GenericValue>> {
|
|
16
16
|
constructor(value: GenericValue);
|
|
17
17
|
[kind]: unknown;
|
|
18
|
-
then<TResult1 = ComputeFutureEitherResult<GenericValue>, TResult2 = never>(onfulfilled?: ((value: ComputeFutureEitherResult<GenericValue>) => TResult1 | PromiseLike<TResult1>) | null): Promise<TResult1 | TResult2>;
|
|
18
|
+
then<TResult1 = Extract<ComputeFutureEitherResult<GenericValue>, any>, TResult2 = never>(onfulfilled?: ((value: Extract<ComputeFutureEitherResult<GenericValue>, any>) => TResult1 | PromiseLike<TResult1>) | null): Promise<TResult1 | TResult2>;
|
|
19
19
|
static get [Symbol.species](): PromiseConstructor;
|
|
20
20
|
static instanceof<GenericValue extends unknown>(value: GenericValue): value is Extract<GenericValue, Future<any>>;
|
|
21
21
|
static rightAll<const GenericArray extends readonly unknown[]>(values: GenericArray): FutureEitherAllResult<GenericArray>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function asyncChunk(...args) {
|
|
4
|
+
if (args.length === 1) {
|
|
5
|
+
const [size] = args;
|
|
6
|
+
return (input) => asyncChunk(input, size);
|
|
7
|
+
}
|
|
8
|
+
const [input, size] = args;
|
|
9
|
+
return (async function* () {
|
|
10
|
+
let buffer = [];
|
|
11
|
+
for await (const element of input) {
|
|
12
|
+
buffer.push(element);
|
|
13
|
+
if (buffer.length === size) {
|
|
14
|
+
yield buffer;
|
|
15
|
+
buffer = [];
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
if (buffer.length > 0) {
|
|
19
|
+
yield buffer;
|
|
20
|
+
}
|
|
21
|
+
})();
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
exports.asyncChunk = asyncChunk;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare function asyncChunk<const GenericElement extends unknown>(size: number): (input: AsyncIterable<GenericElement>) => AsyncGenerator<GenericElement[], unknown, unknown>;
|
|
2
|
+
export declare function asyncChunk<const GenericElement extends unknown>(input: AsyncIterable<GenericElement>, size: number): AsyncGenerator<GenericElement[], unknown, unknown>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
function asyncChunk(...args) {
|
|
2
|
+
if (args.length === 1) {
|
|
3
|
+
const [size] = args;
|
|
4
|
+
return (input) => asyncChunk(input, size);
|
|
5
|
+
}
|
|
6
|
+
const [input, size] = args;
|
|
7
|
+
return (async function* () {
|
|
8
|
+
let buffer = [];
|
|
9
|
+
for await (const element of input) {
|
|
10
|
+
buffer.push(element);
|
|
11
|
+
if (buffer.length === size) {
|
|
12
|
+
yield buffer;
|
|
13
|
+
buffer = [];
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
if (buffer.length > 0) {
|
|
17
|
+
yield buffer;
|
|
18
|
+
}
|
|
19
|
+
})();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { asyncChunk };
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { type GeneratorLoopParams } from "./loop";
|
|
3
|
-
|
|
4
|
-
"-exitData": GenericOutput | undefined;
|
|
5
|
-
}
|
|
6
|
-
interface LoopOutputNextResult<GenericOutput extends any> {
|
|
7
|
-
"-nextData": GenericOutput | undefined;
|
|
8
|
-
}
|
|
9
|
-
export declare function asyncLoop<GenericRawExitOutput extends AnyValue = undefined, GenericRawNextOutput extends AnyValue = undefined>(loop: (params: GeneratorLoopParams<GenericRawNextOutput>) => Promise<LoopOutputNextResult<GenericRawNextOutput> | LoopOutputNextResult<undefined> | LoopOutputExistResult<GenericRawExitOutput> | LoopOutputExistResult<undefined>>): AsyncGenerator<Exclude<GenericRawExitOutput | GenericRawNextOutput, undefined>, unknown, unknown>;
|
|
10
|
-
export {};
|
|
1
|
+
import { type MaybePromise } from "../common";
|
|
2
|
+
import { type LoopOutputExistResult, type LoopOutputNextResult, type GeneratorLoopParams } from "./loop";
|
|
3
|
+
export declare function asyncLoop<GenericRawNextOutput extends unknown, GenericOutput extends MaybePromise<LoopOutputNextResult<GenericRawNextOutput> | LoopOutputExistResult<unknown> | LoopOutputNextResult<undefined> | LoopOutputExistResult<undefined>>>(loop: (params: GeneratorLoopParams<GenericRawNextOutput>) => GenericOutput): AsyncGenerator<Exclude<Awaited<GenericOutput> extends infer InferredOutput ? InferredOutput extends LoopOutputNextResult ? InferredOutput["-nextData"] : InferredOutput extends LoopOutputExistResult ? InferredOutput["-exitData"] : never : never, undefined>, unknown, unknown>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface AsyncGeneratorMapParams {
|
|
2
2
|
index: number;
|
|
3
3
|
}
|
|
4
|
-
export declare function asyncMap<const GenericInput extends unknown, const GenericOutput extends unknown>(theFunction: (arg: GenericInput, params: AsyncGeneratorMapParams) =>
|
|
5
|
-
export declare function asyncMap<const GenericInput extends unknown, const GenericOutput extends unknown>(iterator: AsyncIterable<GenericInput> | Iterable<GenericInput>, theFunction: (arg: GenericInput, params: AsyncGeneratorMapParams) =>
|
|
4
|
+
export declare function asyncMap<const GenericInput extends unknown, const GenericOutput extends unknown>(theFunction: (arg: GenericInput, params: AsyncGeneratorMapParams) => GenericOutput): (iterator: AsyncIterable<GenericInput> | Iterable<GenericInput>) => AsyncGenerator<Awaited<GenericOutput>, unknown, unknown>;
|
|
5
|
+
export declare function asyncMap<const GenericInput extends unknown, const GenericOutput extends unknown>(iterator: AsyncIterable<GenericInput> | Iterable<GenericInput>, theFunction: (arg: GenericInput, params: AsyncGeneratorMapParams) => GenericOutput): AsyncGenerator<Awaited<GenericOutput>, unknown, unknown>;
|
|
6
6
|
export {};
|
package/dist/generator/index.cjs
CHANGED
|
@@ -10,6 +10,7 @@ var asyncReduce = require('./asyncReduce.cjs');
|
|
|
10
10
|
var loop = require('./loop.cjs');
|
|
11
11
|
var asyncLoop = require('./asyncLoop.cjs');
|
|
12
12
|
var chunk = require('./chunk.cjs');
|
|
13
|
+
var asyncChunk = require('./asyncChunk.cjs');
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
@@ -24,3 +25,4 @@ exports.asyncReduce = asyncReduce.asyncReduce;
|
|
|
24
25
|
exports.loop = loop.loop;
|
|
25
26
|
exports.asyncLoop = asyncLoop.asyncLoop;
|
|
26
27
|
exports.chunk = chunk.chunk;
|
|
28
|
+
exports.asyncChunk = asyncChunk.asyncChunk;
|
package/dist/generator/index.mjs
CHANGED
package/dist/generator/loop.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type AnyValue } from "../common";
|
|
2
|
-
interface LoopOutputExistResult<GenericOutput extends
|
|
3
|
-
"-exitData": GenericOutput
|
|
2
|
+
export interface LoopOutputExistResult<GenericOutput extends unknown = unknown> {
|
|
3
|
+
"-exitData": GenericOutput;
|
|
4
4
|
}
|
|
5
|
-
interface LoopOutputNextResult<GenericOutput extends
|
|
6
|
-
"-nextData": GenericOutput
|
|
5
|
+
export interface LoopOutputNextResult<GenericOutput extends unknown = unknown> {
|
|
6
|
+
"-nextData": GenericOutput;
|
|
7
7
|
}
|
|
8
8
|
export interface GeneratorLoopParams<GenericRawNextOutput extends any> {
|
|
9
9
|
count: number;
|
|
@@ -12,4 +12,3 @@ export interface GeneratorLoopParams<GenericRawNextOutput extends any> {
|
|
|
12
12
|
exit<GenericOutput extends AnyValue = undefined>(output?: GenericOutput): LoopOutputExistResult<GenericOutput>;
|
|
13
13
|
}
|
|
14
14
|
export declare function loop<GenericRawExitOutput extends AnyValue = undefined, GenericRawNextOutput extends AnyValue = undefined>(loop: (params: GeneratorLoopParams<GenericRawNextOutput>) => LoopOutputNextResult<GenericRawNextOutput> | LoopOutputNextResult<undefined> | LoopOutputExistResult<GenericRawExitOutput> | LoopOutputExistResult<undefined>): Generator<Exclude<GenericRawExitOutput | GenericRawNextOutput, undefined>, unknown, unknown>;
|
|
15
|
-
export {};
|
package/dist/index.cjs
CHANGED
|
@@ -26,7 +26,7 @@ var simpleClone = require('./common/simpleClone.cjs');
|
|
|
26
26
|
var sleep = require('./common/sleep.cjs');
|
|
27
27
|
var stringToBytes = require('./common/stringToBytes.cjs');
|
|
28
28
|
var stringToMillisecond = require('./common/stringToMillisecond.cjs');
|
|
29
|
-
var
|
|
29
|
+
var toJSON = require('./common/toJSON.cjs');
|
|
30
30
|
var toTransform = require('./common/toTransform.cjs');
|
|
31
31
|
var toWrappedValue = require('./common/toWrappedValue.cjs');
|
|
32
32
|
var unwrap = require('./common/unwrap.cjs');
|
|
@@ -101,7 +101,7 @@ exports.InvalidBytesInStringError = stringToBytes.InvalidBytesInStringError;
|
|
|
101
101
|
exports.stringToBytes = stringToBytes.stringToBytes;
|
|
102
102
|
exports.InvalidMillisecondInStringError = stringToMillisecond.InvalidMillisecondInStringError;
|
|
103
103
|
exports.stringToMillisecond = stringToMillisecond.stringToMillisecond;
|
|
104
|
-
exports.toJSON =
|
|
104
|
+
exports.toJSON = toJSON.toJSON;
|
|
105
105
|
exports.toTransform = toTransform.toTransform;
|
|
106
106
|
exports.toWrappedValue = toWrappedValue.toWrappedValue;
|
|
107
107
|
exports.unwrap = unwrap.unwrap;
|
package/dist/index.mjs
CHANGED
|
@@ -48,7 +48,7 @@ export { simpleClone } from './common/simpleClone.mjs';
|
|
|
48
48
|
export { sleep } from './common/sleep.mjs';
|
|
49
49
|
export { InvalidBytesInStringError, stringToBytes } from './common/stringToBytes.mjs';
|
|
50
50
|
export { InvalidMillisecondInStringError, stringToMillisecond } from './common/stringToMillisecond.mjs';
|
|
51
|
-
export { toJSON } from './common/
|
|
51
|
+
export { toJSON } from './common/toJSON.mjs';
|
|
52
52
|
export { toTransform } from './common/toTransform.mjs';
|
|
53
53
|
export { toWrappedValue } from './common/toWrappedValue.mjs';
|
|
54
54
|
export { unwrap } from './common/unwrap.mjs';
|