@duplojs/utils 1.4.32 → 1.4.33
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/array/at/default.d.ts +32 -0
- package/dist/array/at/first.cjs +3 -0
- package/dist/array/at/first.d.ts +25 -0
- package/dist/array/at/first.mjs +3 -0
- package/dist/array/at/last.cjs +3 -0
- package/dist/array/at/last.d.ts +25 -0
- package/dist/array/at/last.mjs +3 -0
- package/dist/array/chunk.d.ts +27 -0
- package/dist/array/coalescing.cjs +3 -0
- package/dist/array/coalescing.d.ts +22 -0
- package/dist/array/coalescing.mjs +3 -0
- package/dist/array/concat.d.ts +28 -0
- package/dist/array/copyWithin.d.ts +31 -0
- package/dist/array/every.d.ts +37 -0
- package/dist/array/fill/all.d.ts +36 -0
- package/dist/array/fill/default.d.ts +36 -0
- package/dist/array/filter.d.ts +33 -0
- package/dist/array/find.d.ts +34 -0
- package/dist/array/findAndReplace.d.ts +40 -0
- package/dist/array/findAndSplice/delete.d.ts +40 -0
- package/dist/array/findAndSplice/insert.d.ts +40 -0
- package/dist/array/findAndSplice/replace.d.ts +40 -0
- package/dist/array/findIndex.d.ts +37 -0
- package/dist/array/findLast.d.ts +39 -0
- package/dist/array/findLastIndex.d.ts +37 -0
- package/dist/array/flat.d.ts +32 -0
- package/dist/array/flatMap.d.ts +37 -0
- package/dist/array/from.cjs +3 -0
- package/dist/array/from.d.ts +33 -0
- package/dist/array/from.mjs +3 -0
- package/dist/array/group.d.ts +67 -0
- package/dist/array/includes.d.ts +40 -0
- package/dist/array/index.cjs +3 -1
- package/dist/array/index.d.ts +27 -0
- package/dist/array/index.mjs +4 -0
- package/dist/array/indexOf.d.ts +38 -0
- package/dist/array/insert.d.ts +34 -0
- package/dist/array/is.cjs +3 -0
- package/dist/array/is.d.ts +25 -0
- package/dist/array/is.mjs +3 -0
- package/dist/array/isLastIndex.d.ts +28 -0
- package/dist/array/join.d.ts +35 -0
- package/dist/array/lastIndexOf.d.ts +37 -0
- package/dist/array/length.cjs +3 -0
- package/dist/array/length.d.ts +24 -0
- package/dist/array/length.mjs +3 -0
- package/dist/array/lengthEqual.d.ts +44 -0
- package/dist/array/map.d.ts +33 -0
- package/dist/array/maxElements.d.ts +33 -0
- package/dist/array/maxOf.cjs +3 -0
- package/dist/array/maxOf.d.ts +28 -0
- package/dist/array/maxOf.mjs +3 -0
- package/dist/array/minElements.d.ts +47 -0
- package/dist/array/minOf.cjs +3 -0
- package/dist/array/minOf.d.ts +28 -0
- package/dist/array/minOf.mjs +3 -0
- package/dist/array/notIncludes.d.ts +41 -0
- package/dist/array/pop.cjs +3 -0
- package/dist/array/pop.d.ts +31 -0
- package/dist/array/pop.mjs +3 -0
- package/dist/array/push.d.ts +38 -0
- package/dist/array/reduce.cjs +3 -0
- package/dist/array/reduce.d.ts +74 -0
- package/dist/array/reduce.mjs +3 -0
- package/dist/array/reduceRight.d.ts +39 -0
- package/dist/array/reverse.cjs +3 -0
- package/dist/array/reverse.d.ts +31 -0
- package/dist/array/reverse.mjs +3 -0
- package/dist/array/select.d.ts +39 -0
- package/dist/array/set.d.ts +39 -0
- package/dist/array/shift.cjs +3 -0
- package/dist/array/shift.d.ts +31 -0
- package/dist/array/shift.mjs +3 -0
- package/dist/array/slice.d.ts +36 -0
- package/dist/array/some.d.ts +44 -0
- package/dist/array/sort.d.ts +29 -0
- package/dist/array/splice/delete.d.ts +32 -0
- package/dist/array/splice/insert.d.ts +39 -0
- package/dist/array/splice/replace.d.ts +39 -0
- package/dist/array/sum.cjs +3 -0
- package/dist/array/sum.d.ts +22 -0
- package/dist/array/sum.mjs +3 -0
- package/dist/array/toTuple.d.ts +33 -0
- package/dist/array/unshift.d.ts +38 -0
- package/dist/clean/constraint/base.cjs +3 -0
- package/dist/clean/constraint/base.d.ts +106 -0
- package/dist/clean/constraint/base.mjs +3 -0
- package/dist/clean/constraint/defaultConstraint/number.cjs +9 -0
- package/dist/clean/constraint/defaultConstraint/number.d.ts +81 -0
- package/dist/clean/constraint/defaultConstraint/number.mjs +9 -0
- package/dist/clean/constraint/defaultConstraint/string.cjs +6 -0
- package/dist/clean/constraint/defaultConstraint/string.d.ts +54 -0
- package/dist/clean/constraint/defaultConstraint/string.mjs +6 -0
- package/dist/clean/entity.cjs +3 -0
- package/dist/clean/entity.d.ts +141 -0
- package/dist/clean/entity.mjs +3 -0
- package/dist/clean/flag.cjs +3 -0
- package/dist/clean/flag.d.ts +96 -0
- package/dist/clean/flag.mjs +3 -0
- package/dist/clean/index.cjs +3 -1
- package/dist/clean/index.d.ts +25 -0
- package/dist/clean/index.mjs +4 -0
- package/dist/clean/kind.cjs +3 -0
- package/dist/clean/kind.d.ts +33 -0
- package/dist/clean/kind.mjs +3 -0
- package/dist/clean/newType.cjs +3 -0
- package/dist/clean/newType.d.ts +106 -0
- package/dist/clean/newType.mjs +3 -0
- package/dist/clean/primitive/base.cjs +18 -0
- package/dist/clean/primitive/base.d.ts +242 -0
- package/dist/clean/primitive/base.mjs +18 -0
- package/dist/clean/primitive/operations/date/dateAddTime.d.ts +35 -0
- package/dist/clean/primitive/operations/date/dateGreaterThan.d.ts +24 -0
- package/dist/clean/primitive/operations/date/dateLessThan.d.ts +24 -0
- package/dist/clean/primitive/operations/date/dateMax.cjs +3 -0
- package/dist/clean/primitive/operations/date/dateMax.d.ts +36 -0
- package/dist/clean/primitive/operations/date/dateMax.mjs +3 -0
- package/dist/clean/primitive/operations/date/dateMin.cjs +3 -0
- package/dist/clean/primitive/operations/date/dateMin.d.ts +36 -0
- package/dist/clean/primitive/operations/date/dateMin.mjs +3 -0
- package/dist/clean/primitive/operations/date/dateSubtractTime.d.ts +35 -0
- package/dist/clean/primitive/operations/equal.d.ts +34 -0
- package/dist/clean/primitive/operations/number/add.d.ts +34 -0
- package/dist/clean/primitive/operations/number/divide.d.ts +34 -0
- package/dist/clean/primitive/operations/number/greaterThan.d.ts +25 -0
- package/dist/clean/primitive/operations/number/lessThan.d.ts +25 -0
- package/dist/clean/primitive/operations/number/max.cjs +3 -0
- package/dist/clean/primitive/operations/number/max.d.ts +33 -0
- package/dist/clean/primitive/operations/number/max.mjs +3 -0
- package/dist/clean/primitive/operations/number/min.cjs +3 -0
- package/dist/clean/primitive/operations/number/min.d.ts +33 -0
- package/dist/clean/primitive/operations/number/min.mjs +3 -0
- package/dist/clean/primitive/operations/number/multiply.d.ts +34 -0
- package/dist/clean/primitive/operations/number/subtract.d.ts +34 -0
- package/dist/clean/primitive/operations/sort.d.ts +38 -0
- package/dist/clean/primitive/operations/string/concat.d.ts +35 -0
- package/dist/clean/primitive/operations/string/length.cjs +3 -0
- package/dist/clean/primitive/operations/string/length.d.ts +27 -0
- package/dist/clean/primitive/operations/string/length.mjs +3 -0
- package/dist/clean/primitive/operations/string/lengthEqual.d.ts +25 -0
- package/dist/clean/primitive/operations/string/lengthGreaterThan.d.ts +25 -0
- package/dist/clean/primitive/operations/string/lengthLessThan.d.ts +25 -0
- package/dist/clean/primitive/operations/time/timeGreaterThan.d.ts +24 -0
- package/dist/clean/primitive/operations/time/timeLessThan.d.ts +24 -0
- package/dist/clean/primitive/operations/time/timeMax.cjs +3 -0
- package/dist/clean/primitive/operations/time/timeMax.d.ts +36 -0
- package/dist/clean/primitive/operations/time/timeMax.mjs +3 -0
- package/dist/clean/primitive/operations/time/timeMin.cjs +3 -0
- package/dist/clean/primitive/operations/time/timeMin.d.ts +36 -0
- package/dist/clean/primitive/operations/time/timeMin.mjs +3 -0
- package/dist/clean/repository.cjs +3 -0
- package/dist/clean/repository.d.ts +87 -0
- package/dist/clean/repository.mjs +3 -0
- package/dist/clean/useCase.cjs +6 -0
- package/dist/clean/useCase.d.ts +140 -0
- package/dist/clean/useCase.mjs +6 -0
- package/dist/common/addWrappedProperties.cjs +3 -0
- package/dist/common/addWrappedProperties.d.ts +12 -0
- package/dist/common/addWrappedProperties.mjs +3 -0
- package/dist/common/and.d.ts +53 -0
- package/dist/common/asyncInnerPipe.d.ts +49 -0
- package/dist/common/asyncLoop.cjs +3 -0
- package/dist/common/asyncLoop.d.ts +29 -0
- package/dist/common/asyncLoop.mjs +3 -0
- package/dist/common/asyncPipe.cjs +3 -0
- package/dist/common/asyncPipe.d.ts +35 -0
- package/dist/common/asyncPipe.mjs +3 -0
- package/dist/common/asyncRetry.cjs +6 -0
- package/dist/common/asyncRetry.d.ts +64 -0
- package/dist/common/asyncRetry.mjs +6 -0
- package/dist/common/builder.cjs +3 -0
- package/dist/common/builder.d.ts +88 -0
- package/dist/common/builder.mjs +3 -0
- package/dist/common/clone.cjs +3 -0
- package/dist/common/clone.d.ts +12 -0
- package/dist/common/clone.mjs +3 -0
- package/dist/common/enum.cjs +3 -0
- package/dist/common/enum.d.ts +34 -0
- package/dist/common/enum.mjs +3 -0
- package/dist/common/equal.d.ts +38 -0
- package/dist/common/escapeRegExp.cjs +3 -0
- package/dist/common/escapeRegExp.d.ts +20 -0
- package/dist/common/escapeRegExp.mjs +3 -0
- package/dist/common/externalPromise.cjs +3 -0
- package/dist/common/externalPromise.d.ts +20 -0
- package/dist/common/externalPromise.mjs +3 -0
- package/dist/common/falsy.cjs +3 -0
- package/dist/common/falsy.d.ts +27 -0
- package/dist/common/falsy.mjs +3 -0
- package/dist/common/forward.cjs +3 -0
- package/dist/common/forward.d.ts +23 -0
- package/dist/common/forward.mjs +3 -0
- package/dist/common/forwardLog.cjs +3 -0
- package/dist/common/forwardLog.d.ts +28 -0
- package/dist/common/forwardLog.mjs +3 -0
- package/dist/common/globalStore.cjs +3 -0
- package/dist/common/globalStore.d.ts +12 -0
- package/dist/common/globalStore.mjs +3 -0
- package/dist/common/hasKinds.d.ts +39 -0
- package/dist/common/hasSomeKinds.d.ts +39 -0
- package/dist/common/index.d.ts +27 -0
- package/dist/common/innerPipe.d.ts +35 -0
- package/dist/common/instanceOf.d.ts +33 -0
- package/dist/common/isType.d.ts +35 -0
- package/dist/common/justReturn.d.ts +43 -0
- package/dist/common/kind.cjs +6 -0
- package/dist/common/kind.d.ts +94 -0
- package/dist/common/kind.mjs +6 -0
- package/dist/common/loop.cjs +3 -0
- package/dist/common/loop.d.ts +26 -0
- package/dist/common/loop.mjs +3 -0
- package/dist/common/memo.cjs +3 -0
- package/dist/common/memo.d.ts +25 -0
- package/dist/common/memo.mjs +3 -0
- package/dist/common/or.d.ts +41 -0
- package/dist/common/override.cjs +3 -0
- package/dist/common/override.d.ts +45 -0
- package/dist/common/override.mjs +3 -0
- package/dist/common/pipe.d.ts +29 -0
- package/dist/common/promiseObject.cjs +3 -0
- package/dist/common/promiseObject.d.ts +26 -0
- package/dist/common/promiseObject.mjs +3 -0
- package/dist/common/simpleClone.cjs +3 -0
- package/dist/common/simpleClone.d.ts +23 -0
- package/dist/common/simpleClone.mjs +3 -0
- package/dist/common/sleep.cjs +3 -0
- package/dist/common/sleep.d.ts +21 -0
- package/dist/common/sleep.mjs +3 -0
- package/dist/common/stringToBytes.cjs +3 -0
- package/dist/common/stringToBytes.d.ts +17 -0
- package/dist/common/stringToBytes.mjs +3 -0
- package/dist/common/stringToMillisecond.cjs +3 -0
- package/dist/common/stringToMillisecond.d.ts +17 -0
- package/dist/common/stringToMillisecond.mjs +3 -0
- package/dist/common/toJSON.cjs +3 -0
- package/dist/common/toJSON.d.ts +35 -0
- package/dist/common/toJSON.mjs +3 -0
- package/dist/common/toString.cjs +3 -0
- package/dist/common/toString.d.ts +18 -0
- package/dist/common/toString.mjs +3 -0
- package/dist/common/toTransform.cjs +3 -0
- package/dist/common/toTransform.d.ts +41 -0
- package/dist/common/toTransform.mjs +3 -0
- package/dist/common/toWrappedValue.cjs +3 -0
- package/dist/common/toWrappedValue.d.ts +22 -0
- package/dist/common/toWrappedValue.mjs +3 -0
- package/dist/common/truthy.cjs +3 -0
- package/dist/common/truthy.d.ts +27 -0
- package/dist/common/truthy.mjs +3 -0
- package/dist/common/unwrap.d.ts +22 -0
- package/dist/common/when.d.ts +40 -0
- package/dist/common/whenElse.d.ts +42 -0
- package/dist/common/whenNot.d.ts +40 -0
- package/dist/common/wrapValue.cjs +9 -0
- package/dist/common/wrapValue.d.ts +55 -0
- package/dist/common/wrapValue.mjs +9 -0
- package/dist/dataParser/base.d.ts +104 -0
- package/dist/dataParser/baseExtended.d.ts +333 -0
- package/dist/dataParser/extended/array.cjs +3 -0
- package/dist/dataParser/extended/array.d.ts +84 -0
- package/dist/dataParser/extended/array.mjs +3 -0
- package/dist/dataParser/extended/bigint.cjs +3 -0
- package/dist/dataParser/extended/bigint.d.ts +84 -0
- package/dist/dataParser/extended/bigint.mjs +3 -0
- package/dist/dataParser/extended/boolean.cjs +3 -0
- package/dist/dataParser/extended/boolean.d.ts +28 -0
- package/dist/dataParser/extended/boolean.mjs +3 -0
- package/dist/dataParser/extended/date.cjs +3 -0
- package/dist/dataParser/extended/date.d.ts +28 -0
- package/dist/dataParser/extended/date.mjs +3 -0
- package/dist/dataParser/extended/empty.cjs +3 -0
- package/dist/dataParser/extended/empty.d.ts +27 -0
- package/dist/dataParser/extended/empty.mjs +3 -0
- package/dist/dataParser/extended/lazy.cjs +3 -0
- package/dist/dataParser/extended/lazy.d.ts +38 -0
- package/dist/dataParser/extended/lazy.mjs +3 -0
- package/dist/dataParser/extended/literal.cjs +3 -0
- package/dist/dataParser/extended/literal.d.ts +28 -0
- package/dist/dataParser/extended/literal.mjs +3 -0
- package/dist/dataParser/extended/nil.cjs +3 -0
- package/dist/dataParser/extended/nil.d.ts +28 -0
- package/dist/dataParser/extended/nil.mjs +3 -0
- package/dist/dataParser/extended/nullable.cjs +3 -0
- package/dist/dataParser/extended/nullable.d.ts +28 -0
- package/dist/dataParser/extended/nullable.mjs +3 -0
- package/dist/dataParser/extended/number.cjs +6 -0
- package/dist/dataParser/extended/number.d.ts +143 -0
- package/dist/dataParser/extended/number.mjs +6 -0
- package/dist/dataParser/extended/object.cjs +3 -0
- package/dist/dataParser/extended/object.d.ts +243 -0
- package/dist/dataParser/extended/object.mjs +3 -0
- package/dist/dataParser/extended/optional.cjs +3 -0
- package/dist/dataParser/extended/optional.d.ts +28 -0
- package/dist/dataParser/extended/optional.mjs +3 -0
- package/dist/dataParser/extended/pipe.cjs +3 -0
- package/dist/dataParser/extended/pipe.d.ts +28 -0
- package/dist/dataParser/extended/pipe.mjs +3 -0
- package/dist/dataParser/extended/record.cjs +3 -0
- package/dist/dataParser/extended/record.d.ts +38 -0
- package/dist/dataParser/extended/record.mjs +3 -0
- package/dist/dataParser/extended/recover.cjs +3 -0
- package/dist/dataParser/extended/recover.d.ts +27 -0
- package/dist/dataParser/extended/recover.mjs +3 -0
- package/dist/dataParser/extended/string.cjs +9 -0
- package/dist/dataParser/extended/string.d.ts +162 -0
- package/dist/dataParser/extended/string.mjs +9 -0
- package/dist/dataParser/extended/templateLiteral.cjs +3 -0
- package/dist/dataParser/extended/templateLiteral.d.ts +28 -0
- package/dist/dataParser/extended/templateLiteral.mjs +3 -0
- package/dist/dataParser/extended/time.cjs +3 -0
- package/dist/dataParser/extended/time.d.ts +84 -0
- package/dist/dataParser/extended/time.mjs +3 -0
- package/dist/dataParser/extended/transform.cjs +3 -0
- package/dist/dataParser/extended/transform.d.ts +28 -0
- package/dist/dataParser/extended/transform.mjs +3 -0
- package/dist/dataParser/extended/tuple.cjs +3 -0
- package/dist/dataParser/extended/tuple.d.ts +28 -0
- package/dist/dataParser/extended/tuple.mjs +3 -0
- package/dist/dataParser/extended/union.cjs +3 -0
- package/dist/dataParser/extended/union.d.ts +28 -0
- package/dist/dataParser/extended/union.mjs +3 -0
- package/dist/dataParser/extended/unknown.cjs +3 -0
- package/dist/dataParser/extended/unknown.d.ts +26 -0
- package/dist/dataParser/extended/unknown.mjs +3 -0
- package/dist/dataParser/parsers/array/index.cjs +3 -0
- package/dist/dataParser/parsers/array/index.d.ts +30 -0
- package/dist/dataParser/parsers/array/index.mjs +3 -0
- package/dist/dataParser/parsers/bigint/index.cjs +3 -0
- package/dist/dataParser/parsers/bigint/index.d.ts +30 -0
- package/dist/dataParser/parsers/bigint/index.mjs +3 -0
- package/dist/dataParser/parsers/boolean.cjs +3 -0
- package/dist/dataParser/parsers/boolean.d.ts +30 -0
- package/dist/dataParser/parsers/boolean.mjs +3 -0
- package/dist/dataParser/parsers/date.cjs +3 -0
- package/dist/dataParser/parsers/date.d.ts +30 -0
- package/dist/dataParser/parsers/date.mjs +3 -0
- package/dist/dataParser/parsers/empty.cjs +3 -0
- package/dist/dataParser/parsers/empty.d.ts +29 -0
- package/dist/dataParser/parsers/empty.mjs +3 -0
- package/dist/dataParser/parsers/lazy.cjs +3 -0
- package/dist/dataParser/parsers/lazy.d.ts +39 -0
- package/dist/dataParser/parsers/lazy.mjs +3 -0
- package/dist/dataParser/parsers/literal.cjs +3 -0
- package/dist/dataParser/parsers/literal.d.ts +29 -0
- package/dist/dataParser/parsers/literal.mjs +3 -0
- package/dist/dataParser/parsers/nil.cjs +3 -0
- package/dist/dataParser/parsers/nil.d.ts +30 -0
- package/dist/dataParser/parsers/nil.mjs +3 -0
- package/dist/dataParser/parsers/nullable.cjs +3 -0
- package/dist/dataParser/parsers/nullable.d.ts +30 -0
- package/dist/dataParser/parsers/nullable.mjs +3 -0
- package/dist/dataParser/parsers/number/index.cjs +3 -0
- package/dist/dataParser/parsers/number/index.d.ts +30 -0
- package/dist/dataParser/parsers/number/index.mjs +3 -0
- package/dist/dataParser/parsers/object/extends.cjs +3 -0
- package/dist/dataParser/parsers/object/extends.d.ts +50 -0
- package/dist/dataParser/parsers/object/extends.mjs +3 -0
- package/dist/dataParser/parsers/object/index.cjs +3 -0
- package/dist/dataParser/parsers/object/index.d.ts +39 -0
- package/dist/dataParser/parsers/object/index.mjs +3 -0
- package/dist/dataParser/parsers/object/omit.cjs +3 -0
- package/dist/dataParser/parsers/object/omit.d.ts +38 -0
- package/dist/dataParser/parsers/object/omit.mjs +3 -0
- package/dist/dataParser/parsers/object/partial.cjs +3 -0
- package/dist/dataParser/parsers/object/partial.d.ts +28 -0
- package/dist/dataParser/parsers/object/partial.mjs +3 -0
- package/dist/dataParser/parsers/object/pick.cjs +3 -0
- package/dist/dataParser/parsers/object/pick.d.ts +35 -0
- package/dist/dataParser/parsers/object/pick.mjs +3 -0
- package/dist/dataParser/parsers/object/required.cjs +3 -0
- package/dist/dataParser/parsers/object/required.d.ts +37 -0
- package/dist/dataParser/parsers/object/required.mjs +3 -0
- package/dist/dataParser/parsers/optional.cjs +3 -0
- package/dist/dataParser/parsers/optional.d.ts +30 -0
- package/dist/dataParser/parsers/optional.mjs +3 -0
- package/dist/dataParser/parsers/pipe.cjs +3 -0
- package/dist/dataParser/parsers/pipe.d.ts +31 -0
- package/dist/dataParser/parsers/pipe.mjs +3 -0
- package/dist/dataParser/parsers/record/index.cjs +3 -0
- package/dist/dataParser/parsers/record/index.d.ts +37 -0
- package/dist/dataParser/parsers/record/index.mjs +3 -0
- package/dist/dataParser/parsers/recover.cjs +3 -0
- package/dist/dataParser/parsers/recover.d.ts +30 -0
- package/dist/dataParser/parsers/recover.mjs +3 -0
- package/dist/dataParser/parsers/string/index.cjs +3 -0
- package/dist/dataParser/parsers/string/index.d.ts +30 -0
- package/dist/dataParser/parsers/string/index.mjs +3 -0
- package/dist/dataParser/parsers/templateLiteral/index.cjs +3 -0
- package/dist/dataParser/parsers/templateLiteral/index.d.ts +30 -0
- package/dist/dataParser/parsers/templateLiteral/index.mjs +3 -0
- package/dist/dataParser/parsers/time/index.cjs +3 -0
- package/dist/dataParser/parsers/time/index.d.ts +30 -0
- package/dist/dataParser/parsers/time/index.mjs +3 -0
- package/dist/dataParser/parsers/transform.cjs +3 -0
- package/dist/dataParser/parsers/transform.d.ts +29 -0
- package/dist/dataParser/parsers/transform.mjs +3 -0
- package/dist/dataParser/parsers/tuple.cjs +3 -0
- package/dist/dataParser/parsers/tuple.d.ts +26 -0
- package/dist/dataParser/parsers/tuple.mjs +3 -0
- package/dist/dataParser/parsers/union.cjs +3 -0
- package/dist/dataParser/parsers/union.d.ts +31 -0
- package/dist/dataParser/parsers/union.mjs +3 -0
- package/dist/dataParser/parsers/unknown.cjs +3 -0
- package/dist/dataParser/parsers/unknown.d.ts +30 -0
- package/dist/dataParser/parsers/unknown.mjs +3 -0
- package/dist/date/applyTimezone.d.ts +29 -0
- package/dist/date/closestTo.d.ts +35 -0
- package/dist/date/create.d.ts +52 -0
- package/dist/date/createOrThrow.d.ts +35 -0
- package/dist/date/createTheDate.cjs +3 -0
- package/dist/date/createTheDate.d.ts +26 -0
- package/dist/date/createTheDate.mjs +3 -0
- package/dist/date/createTheTime.cjs +3 -0
- package/dist/date/createTheTime.d.ts +23 -0
- package/dist/date/createTheTime.mjs +3 -0
- package/dist/date/createTime.d.ts +37 -0
- package/dist/date/createTimeOrThrow.cjs +3 -0
- package/dist/date/createTimeOrThrow.d.ts +35 -0
- package/dist/date/createTimeOrThrow.mjs +3 -0
- package/dist/date/each.cjs +3 -0
- package/dist/date/each.d.ts +32 -0
- package/dist/date/each.mjs +3 -0
- package/dist/date/format.cjs +2 -1
- package/dist/date/format.d.ts +29 -0
- package/dist/date/format.mjs +2 -1
- package/dist/date/formatTime.cjs +38 -0
- package/dist/date/formatTime.d.ts +35 -0
- package/dist/date/formatTime.mjs +36 -0
- package/dist/date/getTimezoneOffset.d.ts +29 -0
- package/dist/date/getters/getDayOfMonth.cjs +3 -0
- package/dist/date/getters/getDayOfMonth.d.ts +29 -0
- package/dist/date/getters/getDayOfMonth.mjs +3 -0
- package/dist/date/getters/getDayOfWeek.cjs +3 -0
- package/dist/date/getters/getDayOfWeek.d.ts +29 -0
- package/dist/date/getters/getDayOfWeek.mjs +3 -0
- package/dist/date/getters/getDayOfYear.cjs +3 -0
- package/dist/date/getters/getDayOfYear.d.ts +26 -0
- package/dist/date/getters/getDayOfYear.mjs +3 -0
- package/dist/date/getters/getFirstDayOfMonth.cjs +3 -0
- package/dist/date/getters/getFirstDayOfMonth.d.ts +24 -0
- package/dist/date/getters/getFirstDayOfMonth.mjs +3 -0
- package/dist/date/getters/getFirstDayOfWeek.cjs +3 -0
- package/dist/date/getters/getFirstDayOfWeek.d.ts +24 -0
- package/dist/date/getters/getFirstDayOfWeek.mjs +3 -0
- package/dist/date/getters/getHour.cjs +3 -0
- package/dist/date/getters/getHour.d.ts +29 -0
- package/dist/date/getters/getHour.mjs +3 -0
- package/dist/date/getters/getLastDayOfMonth.cjs +3 -0
- package/dist/date/getters/getLastDayOfMonth.d.ts +24 -0
- package/dist/date/getters/getLastDayOfMonth.mjs +3 -0
- package/dist/date/getters/getLastDayOfWeek.cjs +3 -0
- package/dist/date/getters/getLastDayOfWeek.d.ts +24 -0
- package/dist/date/getters/getLastDayOfWeek.mjs +3 -0
- package/dist/date/getters/getMilliseconds.cjs +3 -0
- package/dist/date/getters/getMilliseconds.d.ts +29 -0
- package/dist/date/getters/getMilliseconds.mjs +3 -0
- package/dist/date/getters/getMinute.cjs +3 -0
- package/dist/date/getters/getMinute.d.ts +29 -0
- package/dist/date/getters/getMinute.mjs +3 -0
- package/dist/date/getters/getMonth.cjs +3 -0
- package/dist/date/getters/getMonth.d.ts +29 -0
- package/dist/date/getters/getMonth.mjs +3 -0
- package/dist/date/getters/getSecond.cjs +3 -0
- package/dist/date/getters/getSecond.d.ts +29 -0
- package/dist/date/getters/getSecond.mjs +3 -0
- package/dist/date/getters/getWeekOfYear.cjs +3 -0
- package/dist/date/getters/getWeekOfYear.d.ts +26 -0
- package/dist/date/getters/getWeekOfYear.mjs +3 -0
- package/dist/date/getters/getYear.cjs +3 -0
- package/dist/date/getters/getYear.d.ts +29 -0
- package/dist/date/getters/getYear.mjs +3 -0
- package/dist/date/index.cjs +7 -1
- package/dist/date/index.d.ts +34 -0
- package/dist/date/index.mjs +6 -0
- package/dist/date/is.cjs +3 -0
- package/dist/date/is.d.ts +30 -0
- package/dist/date/is.mjs +3 -0
- package/dist/date/isSafeTimeValue.cjs +3 -0
- package/dist/date/isSafeTimeValue.d.ts +26 -0
- package/dist/date/isSafeTimeValue.mjs +3 -0
- package/dist/date/isSafeTimestamp.cjs +3 -0
- package/dist/date/isSafeTimestamp.d.ts +31 -0
- package/dist/date/isSafeTimestamp.mjs +3 -0
- package/dist/date/isTime.cjs +3 -0
- package/dist/date/isTime.d.ts +29 -0
- package/dist/date/isTime.mjs +3 -0
- package/dist/date/makeSafeTimeValue.cjs +3 -0
- package/dist/date/makeSafeTimeValue.d.ts +26 -0
- package/dist/date/makeSafeTimeValue.mjs +3 -0
- package/dist/date/makeSafeTimestamp.cjs +3 -0
- package/dist/date/makeSafeTimestamp.d.ts +26 -0
- package/dist/date/makeSafeTimestamp.mjs +3 -0
- package/dist/date/max.cjs +3 -0
- package/dist/date/max.d.ts +24 -0
- package/dist/date/max.mjs +3 -0
- package/dist/date/maxTime.cjs +3 -0
- package/dist/date/maxTime.d.ts +33 -0
- package/dist/date/maxTime.mjs +3 -0
- package/dist/date/min.cjs +3 -0
- package/dist/date/min.d.ts +24 -0
- package/dist/date/min.mjs +3 -0
- package/dist/date/minTime.cjs +3 -0
- package/dist/date/minTime.d.ts +33 -0
- package/dist/date/minTime.mjs +3 -0
- package/dist/date/now.cjs +3 -0
- package/dist/date/now.d.ts +18 -0
- package/dist/date/now.mjs +3 -0
- package/dist/date/operators/addDays.d.ts +26 -0
- package/dist/date/operators/addHours.d.ts +26 -0
- package/dist/date/operators/addMilliseconds.d.ts +26 -0
- package/dist/date/operators/addMinutes.d.ts +26 -0
- package/dist/date/operators/addMonths.d.ts +30 -0
- package/dist/date/operators/addSeconds.d.ts +26 -0
- package/dist/date/operators/addTime.d.ts +31 -0
- package/dist/date/operators/addWeeks.d.ts +26 -0
- package/dist/date/operators/addYears.d.ts +30 -0
- package/dist/date/operators/between.d.ts +32 -0
- package/dist/date/operators/betweenThan.d.ts +32 -0
- package/dist/date/operators/betweenThanTime.d.ts +36 -0
- package/dist/date/operators/betweenTime.d.ts +36 -0
- package/dist/date/operators/greater.d.ts +28 -0
- package/dist/date/operators/greaterThan.d.ts +28 -0
- package/dist/date/operators/greaterThanTime.d.ts +35 -0
- package/dist/date/operators/greaterTime.d.ts +35 -0
- package/dist/date/operators/less.d.ts +28 -0
- package/dist/date/operators/lessThan.d.ts +28 -0
- package/dist/date/operators/lessThanTime.d.ts +35 -0
- package/dist/date/operators/lessTime.d.ts +35 -0
- package/dist/date/operators/subtractDays.d.ts +26 -0
- package/dist/date/operators/subtractHours.d.ts +26 -0
- package/dist/date/operators/subtractMilliseconds.d.ts +26 -0
- package/dist/date/operators/subtractMinutes.d.ts +26 -0
- package/dist/date/operators/subtractMonths.d.ts +26 -0
- package/dist/date/operators/subtractSeconds.d.ts +26 -0
- package/dist/date/operators/subtractTime.d.ts +31 -0
- package/dist/date/operators/subtractWeeks.d.ts +26 -0
- package/dist/date/operators/subtractYears.d.ts +26 -0
- package/dist/date/round.cjs +3 -0
- package/dist/date/round.d.ts +35 -0
- package/dist/date/round.mjs +3 -0
- package/dist/date/sort.d.ts +29 -0
- package/dist/date/sortTimes.d.ts +36 -0
- package/dist/date/toISOString.cjs +3 -0
- package/dist/date/toISOString.d.ts +24 -0
- package/dist/date/toISOString.mjs +3 -0
- package/dist/date/toNative.cjs +3 -0
- package/dist/date/toNative.d.ts +24 -0
- package/dist/date/toNative.mjs +3 -0
- package/dist/date/toTimeValue.cjs +3 -0
- package/dist/date/toTimeValue.d.ts +24 -0
- package/dist/date/toTimeValue.mjs +3 -0
- package/dist/date/toTimestamp.cjs +3 -0
- package/dist/date/toTimestamp.d.ts +24 -0
- package/dist/date/toTimestamp.mjs +3 -0
- package/dist/date/today.cjs +3 -0
- package/dist/date/today.d.ts +18 -0
- package/dist/date/today.mjs +3 -0
- package/dist/date/tomorrow.cjs +3 -0
- package/dist/date/tomorrow.d.ts +18 -0
- package/dist/date/tomorrow.mjs +3 -0
- package/dist/date/types/isLeapYear.d.ts +8 -0
- package/dist/date/types/isSafeYear.d.ts +8 -0
- package/dist/date/types/theDate.d.ts +10 -0
- package/dist/date/types/theTime.d.ts +9 -0
- package/dist/date/yesterday.cjs +3 -0
- package/dist/date/yesterday.d.ts +18 -0
- package/dist/date/yesterday.mjs +3 -0
- package/dist/either/bool/create.d.ts +22 -0
- package/dist/either/bool/falsy.cjs +9 -0
- package/dist/either/bool/falsy.d.ts +69 -0
- package/dist/either/bool/falsy.mjs +9 -0
- package/dist/either/bool/truthy.cjs +9 -0
- package/dist/either/bool/truthy.d.ts +69 -0
- package/dist/either/bool/truthy.mjs +9 -0
- package/dist/either/future/create.cjs +3 -0
- package/dist/either/future/create.d.ts +23 -0
- package/dist/either/future/create.mjs +3 -0
- package/dist/either/future/error.cjs +3 -0
- package/dist/either/future/error.d.ts +18 -0
- package/dist/either/future/error.mjs +3 -0
- package/dist/either/future/success.cjs +3 -0
- package/dist/either/future/success.d.ts +18 -0
- package/dist/either/future/success.mjs +3 -0
- package/dist/either/hasInformation.d.ts +30 -0
- package/dist/either/index.cjs +3 -1
- package/dist/either/index.d.ts +24 -0
- package/dist/either/index.mjs +4 -0
- package/dist/either/left/create.cjs +3 -0
- package/dist/either/left/create.d.ts +29 -0
- package/dist/either/left/create.mjs +3 -0
- package/dist/either/left/error.cjs +3 -0
- package/dist/either/left/error.d.ts +28 -0
- package/dist/either/left/error.mjs +3 -0
- package/dist/either/left/fail.cjs +3 -0
- package/dist/either/left/fail.d.ts +29 -0
- package/dist/either/left/fail.mjs +3 -0
- package/dist/either/left/is.cjs +3 -0
- package/dist/either/left/is.d.ts +22 -0
- package/dist/either/left/is.mjs +3 -0
- package/dist/either/left/when.d.ts +26 -0
- package/dist/either/nullable/create.d.ts +18 -0
- package/dist/either/nullable/empty.cjs +9 -0
- package/dist/either/nullable/empty.d.ts +59 -0
- package/dist/either/nullable/empty.mjs +9 -0
- package/dist/either/nullable/filled.cjs +9 -0
- package/dist/either/nullable/filled.d.ts +61 -0
- package/dist/either/nullable/filled.mjs +9 -0
- package/dist/either/nullish/create.d.ts +20 -0
- package/dist/either/nullish/empty.cjs +9 -0
- package/dist/either/nullish/empty.d.ts +61 -0
- package/dist/either/nullish/empty.mjs +9 -0
- package/dist/either/nullish/filled.cjs +9 -0
- package/dist/either/nullish/filled.d.ts +61 -0
- package/dist/either/nullish/filled.mjs +9 -0
- package/dist/either/optional/create.d.ts +18 -0
- package/dist/either/optional/empty.cjs +9 -0
- package/dist/either/optional/empty.d.ts +59 -0
- package/dist/either/optional/empty.mjs +9 -0
- package/dist/either/optional/filled.cjs +9 -0
- package/dist/either/optional/filled.d.ts +61 -0
- package/dist/either/optional/filled.mjs +9 -0
- package/dist/either/right/asyncGroup.cjs +3 -0
- package/dist/either/right/asyncGroup.d.ts +29 -0
- package/dist/either/right/asyncGroup.mjs +3 -0
- package/dist/either/right/asyncPipe.d.ts +37 -0
- package/dist/either/right/create.cjs +3 -0
- package/dist/either/right/create.d.ts +36 -0
- package/dist/either/right/create.mjs +3 -0
- package/dist/either/right/group.cjs +3 -0
- package/dist/either/right/group.d.ts +26 -0
- package/dist/either/right/group.mjs +3 -0
- package/dist/either/right/is.cjs +3 -0
- package/dist/either/right/is.d.ts +22 -0
- package/dist/either/right/is.mjs +3 -0
- package/dist/either/right/ok.cjs +3 -0
- package/dist/either/right/ok.d.ts +25 -0
- package/dist/either/right/ok.mjs +3 -0
- package/dist/either/right/pipe.d.ts +33 -0
- package/dist/either/right/success.cjs +3 -0
- package/dist/either/right/success.d.ts +28 -0
- package/dist/either/right/success.mjs +3 -0
- package/dist/either/right/when.d.ts +26 -0
- package/dist/either/safeCallback.cjs +3 -0
- package/dist/either/safeCallback.d.ts +26 -0
- package/dist/either/safeCallback.mjs +3 -0
- package/dist/either/whenHasInformation.d.ts +36 -0
- package/dist/generator/asyncChunk.d.ts +34 -0
- package/dist/generator/asyncFilter.d.ts +50 -0
- package/dist/generator/asyncLoop.cjs +3 -0
- package/dist/generator/asyncLoop.d.ts +43 -0
- package/dist/generator/asyncLoop.mjs +3 -0
- package/dist/generator/asyncMap.d.ts +38 -0
- package/dist/generator/asyncReduce.d.ts +34 -0
- package/dist/generator/chunk.d.ts +27 -0
- package/dist/generator/execute.d.ts +33 -0
- package/dist/generator/filter.d.ts +40 -0
- package/dist/generator/index.cjs +3 -1
- package/dist/generator/index.d.ts +26 -0
- package/dist/generator/index.mjs +4 -0
- package/dist/generator/loop.cjs +3 -0
- package/dist/generator/loop.d.ts +35 -0
- package/dist/generator/loop.mjs +3 -0
- package/dist/generator/map.d.ts +35 -0
- package/dist/generator/reduce.cjs +3 -0
- package/dist/generator/reduce.d.ts +60 -0
- package/dist/generator/reduce.mjs +3 -0
- package/dist/metadata.json +9 -0
- package/dist/number/abs.cjs +3 -0
- package/dist/number/abs.d.ts +27 -0
- package/dist/number/abs.mjs +3 -0
- package/dist/number/acos.cjs +3 -0
- package/dist/number/acos.d.ts +27 -0
- package/dist/number/acos.mjs +3 -0
- package/dist/number/add.d.ts +24 -0
- package/dist/number/asin.cjs +3 -0
- package/dist/number/asin.d.ts +27 -0
- package/dist/number/asin.mjs +3 -0
- package/dist/number/atan.cjs +3 -0
- package/dist/number/atan.d.ts +27 -0
- package/dist/number/atan.mjs +3 -0
- package/dist/number/atan2.d.ts +3 -0
- package/dist/number/between.d.ts +33 -0
- package/dist/number/betweenThan.d.ts +33 -0
- package/dist/number/ceil.cjs +3 -0
- package/dist/number/ceil.d.ts +27 -0
- package/dist/number/ceil.mjs +3 -0
- package/dist/number/clamp.d.ts +32 -0
- package/dist/number/cos.cjs +3 -0
- package/dist/number/cos.d.ts +27 -0
- package/dist/number/cos.mjs +3 -0
- package/dist/number/divide.d.ts +30 -0
- package/dist/number/floor.cjs +3 -0
- package/dist/number/floor.d.ts +27 -0
- package/dist/number/floor.mjs +3 -0
- package/dist/number/greater.d.ts +30 -0
- package/dist/number/greaterThan.d.ts +30 -0
- package/dist/number/index.cjs +3 -1
- package/dist/number/index.d.ts +25 -0
- package/dist/number/index.mjs +4 -0
- package/dist/number/less.d.ts +30 -0
- package/dist/number/lessThan.d.ts +30 -0
- package/dist/number/max.cjs +3 -0
- package/dist/number/max.d.ts +26 -0
- package/dist/number/max.mjs +3 -0
- package/dist/number/min.cjs +3 -0
- package/dist/number/min.d.ts +26 -0
- package/dist/number/min.mjs +3 -0
- package/dist/number/modulo.d.ts +30 -0
- package/dist/number/multiply.d.ts +30 -0
- package/dist/number/negate.cjs +3 -0
- package/dist/number/negate.d.ts +25 -0
- package/dist/number/negate.mjs +3 -0
- package/dist/number/power.d.ts +30 -0
- package/dist/number/round.cjs +3 -0
- package/dist/number/round.d.ts +27 -0
- package/dist/number/round.mjs +3 -0
- package/dist/number/sin.cjs +3 -0
- package/dist/number/sin.d.ts +27 -0
- package/dist/number/sin.mjs +3 -0
- package/dist/number/sort.d.ts +32 -0
- package/dist/number/sqrt.cjs +3 -0
- package/dist/number/sqrt.d.ts +27 -0
- package/dist/number/sqrt.mjs +3 -0
- package/dist/number/subtract.d.ts +30 -0
- package/dist/number/tan.cjs +3 -0
- package/dist/number/tan.d.ts +27 -0
- package/dist/number/tan.mjs +3 -0
- package/dist/number/toFixed.d.ts +33 -0
- package/dist/number/trunc.cjs +3 -0
- package/dist/number/trunc.d.ts +27 -0
- package/dist/number/trunc.mjs +3 -0
- package/dist/object/assign.d.ts +40 -0
- package/dist/object/deepDiscriminate.d.ts +54 -0
- package/dist/object/discriminate.d.ts +53 -0
- package/dist/object/entries.cjs +3 -0
- package/dist/object/entries.d.ts +31 -0
- package/dist/object/entries.mjs +3 -0
- package/dist/object/entry.cjs +3 -0
- package/dist/object/entry.d.ts +29 -0
- package/dist/object/entry.mjs +3 -0
- package/dist/object/fromEntries.cjs +3 -0
- package/dist/object/fromEntries.d.ts +39 -0
- package/dist/object/fromEntries.mjs +3 -0
- package/dist/object/getDeepProperty.d.ts +46 -0
- package/dist/object/getProperty.d.ts +39 -0
- package/dist/object/hasKeys.d.ts +48 -0
- package/dist/object/index.cjs +3 -1
- package/dist/object/index.d.ts +25 -0
- package/dist/object/index.mjs +4 -0
- package/dist/object/keys.cjs +3 -0
- package/dist/object/keys.d.ts +33 -0
- package/dist/object/keys.mjs +3 -0
- package/dist/object/omit.d.ts +46 -0
- package/dist/object/override.d.ts +49 -0
- package/dist/object/pick.d.ts +47 -0
- package/dist/object/to.d.ts +43 -0
- package/dist/object/transformProperties.d.ts +46 -0
- package/dist/object/transformProperty.d.ts +41 -0
- package/dist/object/values.cjs +3 -0
- package/dist/object/values.d.ts +33 -0
- package/dist/object/values.mjs +3 -0
- package/dist/pattern/exhaustive.cjs +3 -0
- package/dist/pattern/exhaustive.d.ts +51 -0
- package/dist/pattern/exhaustive.mjs +3 -0
- package/dist/pattern/index.cjs +3 -1
- package/dist/pattern/index.d.ts +24 -0
- package/dist/pattern/index.mjs +4 -0
- package/dist/pattern/isMatch.d.ts +36 -0
- package/dist/pattern/match/index.d.ts +58 -0
- package/dist/pattern/otherwise.d.ts +56 -0
- package/dist/pattern/union.cjs +3 -0
- package/dist/pattern/union.d.ts +37 -0
- package/dist/pattern/union.mjs +3 -0
- package/dist/pattern/when.d.ts +43 -0
- package/dist/string/at/default.d.ts +30 -0
- package/dist/string/capitalize.cjs +3 -0
- package/dist/string/capitalize.d.ts +27 -0
- package/dist/string/capitalize.mjs +3 -0
- package/dist/string/charAt.d.ts +29 -0
- package/dist/string/concat.d.ts +31 -0
- package/dist/string/endsWith.d.ts +41 -0
- package/dist/string/includes.d.ts +41 -0
- package/dist/string/index.cjs +3 -1
- package/dist/string/index.d.ts +27 -0
- package/dist/string/index.mjs +4 -0
- package/dist/string/indexOf.d.ts +30 -0
- package/dist/string/isIn.d.ts +45 -0
- package/dist/string/isKeyof.d.ts +45 -0
- package/dist/string/lastIndexOf.d.ts +30 -0
- package/dist/string/length.cjs +3 -0
- package/dist/string/length.d.ts +24 -0
- package/dist/string/length.mjs +3 -0
- package/dist/string/match.d.ts +29 -0
- package/dist/string/matchAll.d.ts +36 -0
- package/dist/string/normalize.d.ts +29 -0
- package/dist/string/padEnd.d.ts +29 -0
- package/dist/string/padStart.d.ts +29 -0
- package/dist/string/repeat.d.ts +29 -0
- package/dist/string/replace.d.ts +30 -0
- package/dist/string/replaceAll.d.ts +29 -0
- package/dist/string/search.d.ts +30 -0
- package/dist/string/slice.d.ts +29 -0
- package/dist/string/sort.d.ts +42 -0
- package/dist/string/sortCompare.d.ts +33 -0
- package/dist/string/split.d.ts +29 -0
- package/dist/string/startsWith.d.ts +41 -0
- package/dist/string/substring.d.ts +29 -0
- package/dist/string/test.d.ts +29 -0
- package/dist/string/toLowerCase.cjs +3 -0
- package/dist/string/toLowerCase.d.ts +27 -0
- package/dist/string/toLowerCase.mjs +3 -0
- package/dist/string/toUpperCase.cjs +3 -0
- package/dist/string/toUpperCase.d.ts +27 -0
- package/dist/string/toUpperCase.mjs +3 -0
- package/dist/string/trim/default.cjs +3 -0
- package/dist/string/trim/default.d.ts +27 -0
- package/dist/string/trim/default.mjs +3 -0
- package/dist/string/trim/end.cjs +3 -0
- package/dist/string/trim/end.d.ts +27 -0
- package/dist/string/trim/end.mjs +3 -0
- package/dist/string/trim/start.cjs +3 -0
- package/dist/string/trim/start.d.ts +27 -0
- package/dist/string/trim/start.mjs +3 -0
- package/dist/string/uncapitalize.cjs +3 -0
- package/dist/string/uncapitalize.d.ts +27 -0
- package/dist/string/uncapitalize.mjs +3 -0
- package/package.json +1 -1
|
@@ -19,20 +19,163 @@ export interface DataParserNumberExtended<GenericDefinition extends dataParsers.
|
|
|
19
19
|
refine(theFunction: (input: Output<this>) => boolean, definition?: Partial<Omit<dataParsers.DataParserCheckerDefinitionRefine, "theFunction">>): DataParserNumberExtended<AddCheckersToDefinition<GenericDefinition, [
|
|
20
20
|
dataParsers.CheckerRefineImplementation<Output<this>>
|
|
21
21
|
]>>;
|
|
22
|
+
/**
|
|
23
|
+
* Adds a minimum value checker to a number parser.
|
|
24
|
+
*
|
|
25
|
+
* **Supported call styles:**
|
|
26
|
+
* - Method: `dataParser.min(min, definition?)` -> returns a number parser
|
|
27
|
+
*
|
|
28
|
+
* Ensures the number is at least the given minimum.
|
|
29
|
+
*
|
|
30
|
+
* ```ts
|
|
31
|
+
* const parser = DPE.number().min(0);
|
|
32
|
+
* const result = parser.parse(3);
|
|
33
|
+
* if (E.isRight(result)) {
|
|
34
|
+
* const value = unwrap(result);
|
|
35
|
+
* // value: number
|
|
36
|
+
* }
|
|
37
|
+
*
|
|
38
|
+
* const withMessage = DPE.number().min(10, { errorMessage: "number.too-small" });
|
|
39
|
+
* const messageResult = withMessage.parse(10);
|
|
40
|
+
*
|
|
41
|
+
* const chained = DPE.number().min(1).max(5);
|
|
42
|
+
* const chainedResult = chained.parse(3);
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/number
|
|
46
|
+
*
|
|
47
|
+
* @namespace DPE
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
22
50
|
min(min: number, definition?: Partial<Omit<dataParsers.DataParserCheckerDefinitionNumberMin, "min">>): DataParserNumberExtended<AddCheckersToDefinition<GenericDefinition, [
|
|
23
51
|
dataParsers.DataParserCheckerNumberMin
|
|
24
52
|
]>>;
|
|
53
|
+
/**
|
|
54
|
+
* Adds a maximum value checker to a number parser.
|
|
55
|
+
*
|
|
56
|
+
* **Supported call styles:**
|
|
57
|
+
* - Method: `dataParser.max(max, definition?)` -> returns a number parser
|
|
58
|
+
*
|
|
59
|
+
* Ensures the number is at most the given maximum.
|
|
60
|
+
*
|
|
61
|
+
* ```ts
|
|
62
|
+
* const parser = DPE.number().max(10);
|
|
63
|
+
* const result = parser.parse(5);
|
|
64
|
+
* if (E.isRight(result)) {
|
|
65
|
+
* const value = unwrap(result);
|
|
66
|
+
* // value: number
|
|
67
|
+
* }
|
|
68
|
+
*
|
|
69
|
+
* const withMessage = DPE.number().max(100, { errorMessage: "number.too-large" });
|
|
70
|
+
* const messageResult = withMessage.parse(100);
|
|
71
|
+
*
|
|
72
|
+
* const chained = DPE.number().min(1).max(5);
|
|
73
|
+
* const chainedResult = chained.parse(2);
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/number
|
|
77
|
+
*
|
|
78
|
+
* @namespace DPE
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
25
81
|
max(max: number, definition?: Partial<Omit<dataParsers.DataParserCheckerDefinitionNumberMax, "max">>): DataParserNumberExtended<AddCheckersToDefinition<GenericDefinition, [
|
|
26
82
|
dataParsers.DataParserCheckerNumberMax
|
|
27
83
|
]>>;
|
|
84
|
+
/**
|
|
85
|
+
* Adds an integer checker to a number parser.
|
|
86
|
+
*
|
|
87
|
+
* **Supported call styles:**
|
|
88
|
+
* - Method: `dataParser.int(definition?)` -> returns a number parser
|
|
89
|
+
*
|
|
90
|
+
* Ensures the number is an integer.
|
|
91
|
+
*
|
|
92
|
+
* ```ts
|
|
93
|
+
* const parser = DPE.number().int();
|
|
94
|
+
* const result = parser.parse(4);
|
|
95
|
+
* if (E.isRight(result)) {
|
|
96
|
+
* const value = unwrap(result);
|
|
97
|
+
* // value: number
|
|
98
|
+
* }
|
|
99
|
+
*
|
|
100
|
+
* const withMessage = DPE.number().int({ errorMessage: "number.not-int" });
|
|
101
|
+
* const messageResult = withMessage.parse(10);
|
|
102
|
+
*
|
|
103
|
+
* const chained = DPE.number().min(0).int();
|
|
104
|
+
* const chainedResult = chained.parse(3);
|
|
105
|
+
* ```
|
|
106
|
+
*
|
|
107
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/number
|
|
108
|
+
*
|
|
109
|
+
* @namespace DPE
|
|
110
|
+
*
|
|
111
|
+
*/
|
|
28
112
|
int(definition?: Partial<dataParsers.DataParserCheckerDefinitionInt>): DataParserNumberExtended<AddCheckersToDefinition<GenericDefinition, [
|
|
29
113
|
dataParsers.DataParserCheckerInt
|
|
30
114
|
]>>;
|
|
31
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* Creates an extended data parser for numbers.
|
|
118
|
+
*
|
|
119
|
+
* **Supported call styles:**
|
|
120
|
+
* - Method: `DPE.number(definition?)` -> returns a number parser
|
|
121
|
+
*
|
|
122
|
+
* Validates numbers and exposes number-specific methods like min, max, and int.
|
|
123
|
+
*
|
|
124
|
+
* ```ts
|
|
125
|
+
* const parser = DPE.number()
|
|
126
|
+
* .min(0)
|
|
127
|
+
* .max(10)
|
|
128
|
+
* .int();
|
|
129
|
+
* const result = parser.parse(5);
|
|
130
|
+
* if (E.isRight(result)) {
|
|
131
|
+
* const value = unwrap(result);
|
|
132
|
+
* // value: number
|
|
133
|
+
* }
|
|
134
|
+
*
|
|
135
|
+
* const coerceParser = DPE.coerce.number();
|
|
136
|
+
* const coerceResult = coerceParser.parse("42");
|
|
137
|
+
*
|
|
138
|
+
* const intOnly = DPE.number().int();
|
|
139
|
+
* const intResult = intOnly.parse(3);
|
|
140
|
+
* ```
|
|
141
|
+
*
|
|
142
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/number
|
|
143
|
+
*
|
|
144
|
+
* @namespace DPE
|
|
145
|
+
*
|
|
146
|
+
*/
|
|
32
147
|
export declare function number<const GenericDefinition extends Partial<dataParsers.DataParserDefinitionNumber> = never>(definition?: GenericDefinition): DataParserNumberExtended<MergeDefinition<dataParsers.DataParserDefinitionNumber, NeverCoalescing<GenericDefinition, {}>>>;
|
|
33
148
|
export declare namespace number {
|
|
34
149
|
var overrideHandler: import("../../common").OverrideHandler<DataParserNumberExtended<dataParsers.DataParserDefinitionNumber>>;
|
|
35
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* Creates an extended data parser for integers.
|
|
153
|
+
*
|
|
154
|
+
* **Supported call styles:**
|
|
155
|
+
* - Method: `DPE.int(definition?)` -> returns an int parser
|
|
156
|
+
*
|
|
157
|
+
* Validates that the input is an integer number.
|
|
158
|
+
*
|
|
159
|
+
* ```ts
|
|
160
|
+
* const parser = DPE.int();
|
|
161
|
+
* const result = parser.parse(10);
|
|
162
|
+
* if (E.isRight(result)) {
|
|
163
|
+
* const value = unwrap(result);
|
|
164
|
+
* // value: number
|
|
165
|
+
* }
|
|
166
|
+
*
|
|
167
|
+
* const withMessage = DPE.int({ errorMessage: "number.not-int" });
|
|
168
|
+
* const messageResult = withMessage.parse(5);
|
|
169
|
+
*
|
|
170
|
+
* const withRange = DPE.int().min(0).max(10);
|
|
171
|
+
* const rangeResult = withRange.parse(3);
|
|
172
|
+
* ```
|
|
173
|
+
*
|
|
174
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/number
|
|
175
|
+
*
|
|
176
|
+
* @namespace DPE
|
|
177
|
+
*
|
|
178
|
+
*/
|
|
36
179
|
export declare function int(definition?: Partial<dataParsers.DataParserCheckerDefinitionInt>): DataParserNumberExtended<{
|
|
37
180
|
readonly checkers: readonly [dataParsers.DataParserCheckerInt];
|
|
38
181
|
readonly errorMessage?: string | undefined;
|
|
@@ -5,6 +5,9 @@ import { checkerNumberMax } from '../parsers/number/checkers/max.mjs';
|
|
|
5
5
|
import { checkerNumberMin } from '../parsers/number/checkers/min.mjs';
|
|
6
6
|
import { createOverride } from '../../common/override.mjs';
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* {@include dataParser/extended/number/index.md}
|
|
10
|
+
*/
|
|
8
11
|
function number(definition) {
|
|
9
12
|
const self = dataParserExtendedInit(number$1(definition), {
|
|
10
13
|
min(self, min, definition) {
|
|
@@ -20,6 +23,9 @@ function number(definition) {
|
|
|
20
23
|
return number.overrideHandler.apply(self);
|
|
21
24
|
}
|
|
22
25
|
number.overrideHandler = createOverride("@duplojs/utils/data-parser-extended/number");
|
|
26
|
+
/**
|
|
27
|
+
* {@include dataParser/extended/int/index.md}
|
|
28
|
+
*/
|
|
23
29
|
function int(definition) {
|
|
24
30
|
return number({
|
|
25
31
|
checkers: [checkerInt(definition)],
|
|
@@ -9,6 +9,9 @@ var pick = require('../parsers/object/pick.cjs');
|
|
|
9
9
|
var omit = require('../parsers/object/omit.cjs');
|
|
10
10
|
var override = require('../../common/override.cjs');
|
|
11
11
|
|
|
12
|
+
/**
|
|
13
|
+
* {@include dataParser/extended/object/index.md}
|
|
14
|
+
*/
|
|
12
15
|
function object(shape, definition) {
|
|
13
16
|
const self = baseExtended.dataParserExtendedInit(index.object(shape, definition), {
|
|
14
17
|
omit: (self, omitObject, definition) => {
|
|
@@ -20,22 +20,265 @@ export interface DataParserObjectExtended<GenericDefinition extends dataParsers.
|
|
|
20
20
|
refine(theFunction: (input: Output<this>) => boolean, definition?: Partial<Omit<dataParsers.DataParserCheckerDefinitionRefine, "theFunction">>): DataParserObjectExtended<AddCheckersToDefinition<GenericDefinition, [
|
|
21
21
|
dataParsers.CheckerRefineImplementation<Output<this>>
|
|
22
22
|
]>>;
|
|
23
|
+
/**
|
|
24
|
+
* Creates a new object parser by omitting keys from the current shape.
|
|
25
|
+
*
|
|
26
|
+
* **Supported call styles:**
|
|
27
|
+
* - Method: `dataParser.omit(omitObject, definition?)` -> returns an object parser
|
|
28
|
+
*
|
|
29
|
+
* Builds a new object parser without the omitted keys.
|
|
30
|
+
*
|
|
31
|
+
* ```ts
|
|
32
|
+
* const parser = DPE.object({
|
|
33
|
+
* id: DPE.number(),
|
|
34
|
+
* name: DPE.string(),
|
|
35
|
+
* email: DPE.string(),
|
|
36
|
+
* });
|
|
37
|
+
*
|
|
38
|
+
* const omitted = parser.omit({ email: true });
|
|
39
|
+
* const result = omitted.parse({
|
|
40
|
+
* id: 1,
|
|
41
|
+
* name: "Alex",
|
|
42
|
+
* });
|
|
43
|
+
* if (E.isRight(result)) {
|
|
44
|
+
* const value = unwrap(result);
|
|
45
|
+
* // value: { id: number; name: string }
|
|
46
|
+
* }
|
|
47
|
+
*
|
|
48
|
+
* const omitId = parser.omit({ id: true });
|
|
49
|
+
* const omitIdResult = omitId.parse({
|
|
50
|
+
* name: "Alex",
|
|
51
|
+
* email: "a@b.com",
|
|
52
|
+
* });
|
|
53
|
+
*
|
|
54
|
+
* const omitName = parser.omit({ name: true });
|
|
55
|
+
* const omitNameResult = omitName.parse({
|
|
56
|
+
* id: 1,
|
|
57
|
+
* email: "a@b.com",
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
62
|
+
*
|
|
63
|
+
* @namespace DPE
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
23
66
|
omit<const GenericOmitObject extends Partial<Record<keyof GenericDefinition["shape"], true>>, const GenericSubDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(omitObject: GenericOmitObject, definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericSubDefinition, {}> & {
|
|
24
67
|
readonly shape: SimplifyTopLevel<Omit<GenericDefinition["shape"], keyof GenericOmitObject>>;
|
|
25
68
|
}>>;
|
|
69
|
+
/**
|
|
70
|
+
* Creates a new object parser by selecting keys from the current shape.
|
|
71
|
+
*
|
|
72
|
+
* **Supported call styles:**
|
|
73
|
+
* - Method: `dataParser.pick(pickObject, definition?)` -> returns an object parser
|
|
74
|
+
*
|
|
75
|
+
* Builds a new object parser using only the selected keys.
|
|
76
|
+
*
|
|
77
|
+
* ```ts
|
|
78
|
+
* const parser = DPE.object({
|
|
79
|
+
* id: DPE.number(),
|
|
80
|
+
* name: DPE.string(),
|
|
81
|
+
* email: DPE.string(),
|
|
82
|
+
* });
|
|
83
|
+
*
|
|
84
|
+
* const picked = parser.pick({
|
|
85
|
+
* id: true,
|
|
86
|
+
* name: true,
|
|
87
|
+
* });
|
|
88
|
+
* const result = picked.parse({
|
|
89
|
+
* id: 1,
|
|
90
|
+
* name: "Alex",
|
|
91
|
+
* });
|
|
92
|
+
* if (E.isRight(result)) {
|
|
93
|
+
* const value = unwrap(result);
|
|
94
|
+
* // value: { id: number; name: string }
|
|
95
|
+
* }
|
|
96
|
+
*
|
|
97
|
+
* const pickEmail = parser.pick({ email: true });
|
|
98
|
+
* const emailResult = pickEmail.parse({ email: "a@b.com" });
|
|
99
|
+
*
|
|
100
|
+
* const pickId = parser.pick({ id: true });
|
|
101
|
+
* const idResult = pickId.parse({ id: 1 });
|
|
102
|
+
* ```
|
|
103
|
+
*
|
|
104
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
105
|
+
*
|
|
106
|
+
* @namespace DPE
|
|
107
|
+
*
|
|
108
|
+
*/
|
|
26
109
|
pick<const GenericPickObject extends Partial<Record<keyof GenericDefinition["shape"], true>>, const GenericSubDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(pickObject: GenericPickObject, definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericSubDefinition, {}> & {
|
|
27
110
|
readonly shape: SimplifyTopLevel<Pick<GenericDefinition["shape"], Adaptor<keyof GenericPickObject, keyof GenericDefinition["shape"]>>>;
|
|
28
111
|
}>>;
|
|
112
|
+
/**
|
|
113
|
+
* Extends an object parser with additional properties.
|
|
114
|
+
*
|
|
115
|
+
* **Supported call styles:**
|
|
116
|
+
* - Method: `dataParser.extends(extension, definition?)` -> returns an object parser
|
|
117
|
+
*
|
|
118
|
+
* Merges the current object shape with the extension and returns a new parser.
|
|
119
|
+
*
|
|
120
|
+
* ```ts
|
|
121
|
+
* const base = DPE.object({
|
|
122
|
+
* id: DPE.number(),
|
|
123
|
+
* });
|
|
124
|
+
*
|
|
125
|
+
* const extended = base.extends({
|
|
126
|
+
* name: DPE.string(),
|
|
127
|
+
* });
|
|
128
|
+
*
|
|
129
|
+
* const result = extended.parse({
|
|
130
|
+
* id: 1,
|
|
131
|
+
* name: "Alex",
|
|
132
|
+
* });
|
|
133
|
+
* if (E.isRight(result)) {
|
|
134
|
+
* const value = unwrap(result);
|
|
135
|
+
* // value: { id: number; name: string }
|
|
136
|
+
* }
|
|
137
|
+
*
|
|
138
|
+
* const withMore = base.extends({
|
|
139
|
+
* active: DPE.boolean(),
|
|
140
|
+
* });
|
|
141
|
+
* const withMoreResult = withMore.parse({
|
|
142
|
+
* id: 2,
|
|
143
|
+
* active: true,
|
|
144
|
+
* });
|
|
145
|
+
*
|
|
146
|
+
* const chained = DPE.object({ id: DPE.number() })
|
|
147
|
+
* .extends({ name: DPE.string() })
|
|
148
|
+
* .partial();
|
|
149
|
+
* const chainedResult = chained.parse({});
|
|
150
|
+
* ```
|
|
151
|
+
*
|
|
152
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
153
|
+
*
|
|
154
|
+
* @namespace DPE
|
|
155
|
+
*
|
|
156
|
+
*/
|
|
29
157
|
extends<const GenericExtension extends dataParsers.DataParserObjectShape, const GenericSubDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(extension: GenericExtension, definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericSubDefinition, {}> & {
|
|
30
158
|
readonly shape: AssignObjects<GenericDefinition["shape"], GenericExtension>;
|
|
31
159
|
}>>;
|
|
160
|
+
/**
|
|
161
|
+
* Makes all object properties optional.
|
|
162
|
+
*
|
|
163
|
+
* **Supported call styles:**
|
|
164
|
+
* - Method: `dataParser.partial(definition?)` -> returns an object parser
|
|
165
|
+
*
|
|
166
|
+
* Wraps each property of the object shape in optional().
|
|
167
|
+
*
|
|
168
|
+
* ```ts
|
|
169
|
+
* const parser = DPE.object({
|
|
170
|
+
* id: DPE.number(),
|
|
171
|
+
* name: DPE.string(),
|
|
172
|
+
* });
|
|
173
|
+
*
|
|
174
|
+
* const partialUser = parser.partial();
|
|
175
|
+
* const result = partialUser.parse({ name: "Alex" });
|
|
176
|
+
* if (E.isRight(result)) {
|
|
177
|
+
* const value = unwrap(result);
|
|
178
|
+
* // value: { id?: number; name?: string }
|
|
179
|
+
* }
|
|
180
|
+
*
|
|
181
|
+
* const emptyUser = partialUser.parse({});
|
|
182
|
+
*
|
|
183
|
+
* const nested = DPE.object({ profile: parser }).partial();
|
|
184
|
+
* const nestedResult = nested.parse({});
|
|
185
|
+
* ```
|
|
186
|
+
*
|
|
187
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
188
|
+
*
|
|
189
|
+
* @namespace DPE
|
|
190
|
+
*
|
|
191
|
+
*/
|
|
32
192
|
partial<const GenericSubDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericSubDefinition, {}> & {
|
|
33
193
|
readonly shape: dataParsers.PartialDataParserObject<GenericDefinition["shape"]>;
|
|
34
194
|
}>>;
|
|
195
|
+
/**
|
|
196
|
+
* Makes optional object properties required.
|
|
197
|
+
*
|
|
198
|
+
* **Supported call styles:**
|
|
199
|
+
* - Method: `dataParser.required(definition?)` -> returns an object parser
|
|
200
|
+
*
|
|
201
|
+
* Unwraps optional properties so all keys are required.
|
|
202
|
+
*
|
|
203
|
+
* ```ts
|
|
204
|
+
* const parser = DPE.object({
|
|
205
|
+
* id: DPE.number(),
|
|
206
|
+
* name: DPE.string(),
|
|
207
|
+
* });
|
|
208
|
+
*
|
|
209
|
+
* const partialUser = parser.partial();
|
|
210
|
+
* const requiredUser = partialUser.required();
|
|
211
|
+
* const result = requiredUser.parse({
|
|
212
|
+
* id: 1,
|
|
213
|
+
* name: "Alex",
|
|
214
|
+
* });
|
|
215
|
+
* if (E.isRight(result)) {
|
|
216
|
+
* const value = unwrap(result);
|
|
217
|
+
* // value: { id: number; name: string }
|
|
218
|
+
* }
|
|
219
|
+
*
|
|
220
|
+
* const fromOptional = DPE.object({ name: DPE.optional(DPE.string()) }).required();
|
|
221
|
+
* const optionalResult = fromOptional.parse({ name: "Alex" });
|
|
222
|
+
*
|
|
223
|
+
* const strict = parser.required();
|
|
224
|
+
* const strictResult = strict.parse({
|
|
225
|
+
* id: 1,
|
|
226
|
+
* name: "Alex",
|
|
227
|
+
* });
|
|
228
|
+
* ```
|
|
229
|
+
*
|
|
230
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
231
|
+
*
|
|
232
|
+
* @namespace DPE
|
|
233
|
+
*
|
|
234
|
+
*/
|
|
35
235
|
required<const GenericSubDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape" | "optimizedShape">> = never>(definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericSubDefinition, {}> & {
|
|
36
236
|
readonly shape: dataParsers.RequireDataParserObject<GenericDefinition["shape"]>;
|
|
37
237
|
}>>;
|
|
38
238
|
}
|
|
239
|
+
/**
|
|
240
|
+
* Creates an extended data parser for objects with a defined shape.
|
|
241
|
+
*
|
|
242
|
+
* **Supported call styles:**
|
|
243
|
+
* - Method: `DPE.object(shape, definition?)` -> returns an object parser
|
|
244
|
+
*
|
|
245
|
+
* Validates objects and exposes object-specific helpers like pick, omit, partial, and required.
|
|
246
|
+
*
|
|
247
|
+
* ```ts
|
|
248
|
+
* const userParser = DPE.object({
|
|
249
|
+
* id: DPE.number(),
|
|
250
|
+
* name: DPE.string(),
|
|
251
|
+
* email: DPE.string(),
|
|
252
|
+
* });
|
|
253
|
+
*
|
|
254
|
+
* const picked = userParser.pick({
|
|
255
|
+
* id: true,
|
|
256
|
+
* name: true,
|
|
257
|
+
* });
|
|
258
|
+
* const result = picked.parse({
|
|
259
|
+
* id: 1,
|
|
260
|
+
* name: "Alex",
|
|
261
|
+
* });
|
|
262
|
+
* if (E.isRight(result)) {
|
|
263
|
+
* const value = unwrap(result);
|
|
264
|
+
* // value: { id: number; name: string }
|
|
265
|
+
* }
|
|
266
|
+
*
|
|
267
|
+
* const omitted = userParser.omit({ email: true });
|
|
268
|
+
* const omitResult = omitted.parse({
|
|
269
|
+
* id: 1,
|
|
270
|
+
* name: "Alex",
|
|
271
|
+
* });
|
|
272
|
+
*
|
|
273
|
+
* const partialUser = userParser.partial();
|
|
274
|
+
* const partialResult = partialUser.parse({ name: "Alex" });
|
|
275
|
+
* ```
|
|
276
|
+
*
|
|
277
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/object
|
|
278
|
+
*
|
|
279
|
+
* @namespace DPE
|
|
280
|
+
*
|
|
281
|
+
*/
|
|
39
282
|
export declare function object<const GenericShape extends dataParsers.DataParserObjectShape, const GenericDefinition extends Partial<Omit<dataParsers.DataParserDefinitionObject, "shape">> = never>(shape: GenericShape, definition?: GenericDefinition): DataParserObjectExtended<MergeDefinition<dataParsers.DataParserDefinitionObject, NeverCoalescing<GenericDefinition, {}> & {
|
|
40
283
|
shape: GenericShape;
|
|
41
284
|
}>>;
|
|
@@ -7,6 +7,9 @@ import { pickShape } from '../parsers/object/pick.mjs';
|
|
|
7
7
|
import { omitShape } from '../parsers/object/omit.mjs';
|
|
8
8
|
import { createOverride } from '../../common/override.mjs';
|
|
9
9
|
|
|
10
|
+
/**
|
|
11
|
+
* {@include dataParser/extended/object/index.md}
|
|
12
|
+
*/
|
|
10
13
|
function object(shape, definition) {
|
|
11
14
|
const self = dataParserExtendedInit(object$1(shape, definition), {
|
|
12
15
|
omit: (self, omitObject, definition) => {
|
|
@@ -4,6 +4,9 @@ var baseExtended = require('../baseExtended.cjs');
|
|
|
4
4
|
var optional$1 = require('../parsers/optional.cjs');
|
|
5
5
|
var override = require('../../common/override.cjs');
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* {@include dataParser/extended/optional/index.md}
|
|
9
|
+
*/
|
|
7
10
|
function optional(inner, definition) {
|
|
8
11
|
const self = baseExtended.dataParserExtendedInit(optional$1.optional(inner, definition), {});
|
|
9
12
|
return optional.overrideHandler.apply(self);
|
|
@@ -20,6 +20,34 @@ export interface DataParserOptionalExtended<GenericDefinition extends dataParser
|
|
|
20
20
|
dataParsers.CheckerRefineImplementation<Output<this>>
|
|
21
21
|
]>>;
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Creates an extended optional parser from another parser.
|
|
25
|
+
*
|
|
26
|
+
* **Supported call styles:**
|
|
27
|
+
* - Method: `DPE.optional(inner, definition?)` -> returns an optional parser
|
|
28
|
+
*
|
|
29
|
+
* Returns undefined (or a coalescing value) when input is undefined, otherwise parses with the inner parser.
|
|
30
|
+
*
|
|
31
|
+
* ```ts
|
|
32
|
+
* const parser = DPE.optional(DPE.string());
|
|
33
|
+
* const result = parser.parse(undefined);
|
|
34
|
+
* if (E.isRight(result)) {
|
|
35
|
+
* const value = unwrap(result);
|
|
36
|
+
* // value: string | undefined
|
|
37
|
+
* }
|
|
38
|
+
*
|
|
39
|
+
* const withCoalescing = DPE.optional(DPE.number(), { coalescingValue: 0 });
|
|
40
|
+
* const coalesced = withCoalescing.parse(undefined);
|
|
41
|
+
*
|
|
42
|
+
* const optionalBool = DPE.optional(DPE.boolean());
|
|
43
|
+
* const boolResult = optionalBool.parse(true);
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/optional
|
|
47
|
+
*
|
|
48
|
+
* @namespace DPE
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
23
51
|
export declare function optional<GenericDataParser extends DataParser, const GenericDefinition extends Partial<Omit<dataParsers.DataParserDefinitionOptional<Output<GenericDataParser> | undefined>, "inner">> = never>(inner: GenericDataParser, definition?: GenericDefinition): DataParserOptionalExtended<MergeDefinition<dataParsers.DataParserDefinitionOptional, NeverCoalescing<GenericDefinition, {}> & {
|
|
24
52
|
inner: GenericDataParser;
|
|
25
53
|
}>>;
|
|
@@ -2,6 +2,9 @@ import { dataParserExtendedInit } from '../baseExtended.mjs';
|
|
|
2
2
|
import { optional as optional$1 } from '../parsers/optional.mjs';
|
|
3
3
|
import { createOverride } from '../../common/override.mjs';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* {@include dataParser/extended/optional/index.md}
|
|
7
|
+
*/
|
|
5
8
|
function optional(inner, definition) {
|
|
6
9
|
const self = dataParserExtendedInit(optional$1(inner, definition), {});
|
|
7
10
|
return optional.overrideHandler.apply(self);
|
|
@@ -4,6 +4,9 @@ var baseExtended = require('../baseExtended.cjs');
|
|
|
4
4
|
var pipe$1 = require('../parsers/pipe.cjs');
|
|
5
5
|
var override = require('../../common/override.cjs');
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* {@include dataParser/extended/pipe/index.md}
|
|
9
|
+
*/
|
|
7
10
|
function pipe(input, output, definition) {
|
|
8
11
|
const self = baseExtended.dataParserExtendedInit(pipe$1.pipe(input, output, definition), {});
|
|
9
12
|
return pipe.overrideHandler.apply(self);
|
|
@@ -20,6 +20,34 @@ export interface DataParserPipeExtended<GenericDefinition extends dataParsers.Da
|
|
|
20
20
|
dataParsers.CheckerRefineImplementation<Output<this>>
|
|
21
21
|
]>>;
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Creates an extended pipe parser from two parsers.
|
|
25
|
+
*
|
|
26
|
+
* **Supported call styles:**
|
|
27
|
+
* - Method: `DPE.pipe(input, output, definition?)` -> returns a pipe parser
|
|
28
|
+
*
|
|
29
|
+
* Runs the input parser, then feeds its output to the output parser.
|
|
30
|
+
*
|
|
31
|
+
* ```ts
|
|
32
|
+
* const parser = DPE.pipe(DPE.string(), DPE.coerce.number());
|
|
33
|
+
* const result = parser.parse("42");
|
|
34
|
+
* if (E.isRight(result)) {
|
|
35
|
+
* const value = unwrap(result);
|
|
36
|
+
* // value: number
|
|
37
|
+
* }
|
|
38
|
+
*
|
|
39
|
+
* const toLength = DPE.pipe(DPE.string(), DPE.transform(DPE.string(), (value) => value.length));
|
|
40
|
+
* const lengthResult = toLength.parse("Duplo");
|
|
41
|
+
*
|
|
42
|
+
* const passThrough = DPE.pipe(DPE.number(), DPE.number());
|
|
43
|
+
* const passResult = passThrough.parse(10);
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/pipe
|
|
47
|
+
*
|
|
48
|
+
* @namespace DPE
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
23
51
|
export declare function pipe<GenericInput extends DataParser, GenericOutput extends DataParser, const GenericDefinition extends Partial<Omit<dataParsers.DataParserDefinitionPipe, "input" | "output">> = never>(input: GenericInput, output: GenericOutput, definition?: GenericDefinition): DataParserPipeExtended<MergeDefinition<dataParsers.DataParserDefinitionPipe, NeverCoalescing<GenericDefinition, {}> & {
|
|
24
52
|
input: GenericInput;
|
|
25
53
|
output: GenericOutput;
|
|
@@ -2,6 +2,9 @@ import { dataParserExtendedInit } from '../baseExtended.mjs';
|
|
|
2
2
|
import { pipe as pipe$1 } from '../parsers/pipe.mjs';
|
|
3
3
|
import { createOverride } from '../../common/override.mjs';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* {@include dataParser/extended/pipe/index.md}
|
|
7
|
+
*/
|
|
5
8
|
function pipe(input, output, definition) {
|
|
6
9
|
const self = dataParserExtendedInit(pipe$1(input, output, definition), {});
|
|
7
10
|
return pipe.overrideHandler.apply(self);
|
|
@@ -4,6 +4,9 @@ var baseExtended = require('../baseExtended.cjs');
|
|
|
4
4
|
var index = require('../parsers/record/index.cjs');
|
|
5
5
|
var override = require('../../common/override.cjs');
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* {@include dataParser/extended/record/index.md}
|
|
9
|
+
*/
|
|
7
10
|
function record(key, value, definition) {
|
|
8
11
|
const self = baseExtended.dataParserExtendedInit(index.record(key, value, definition), {});
|
|
9
12
|
return record.overrideHandler.apply(self);
|
|
@@ -20,6 +20,44 @@ export interface DataParserRecordExtended<GenericDefinition extends dataParsers.
|
|
|
20
20
|
dataParsers.CheckerRefineImplementation<Output<this>>
|
|
21
21
|
]>>;
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Creates an extended data parser for records with key and value parsers.
|
|
25
|
+
*
|
|
26
|
+
* **Supported call styles:**
|
|
27
|
+
* - Method: `DPE.record(key, value, definition?)` -> returns a record parser
|
|
28
|
+
*
|
|
29
|
+
* Validates objects by parsing each key and value with the provided parsers.
|
|
30
|
+
*
|
|
31
|
+
* ```ts
|
|
32
|
+
* const parser = DPE.record(DPE.string(), DPE.number());
|
|
33
|
+
* const result = parser.parse({
|
|
34
|
+
* aKey: 1,
|
|
35
|
+
* bKey: 2,
|
|
36
|
+
* });
|
|
37
|
+
* if (E.isRight(result)) {
|
|
38
|
+
* const value = unwrap(result);
|
|
39
|
+
* // value: Partial<Record<string, number>>
|
|
40
|
+
* }
|
|
41
|
+
*
|
|
42
|
+
* const keyUnion = DPE.union([DPE.literal("xPos"), DPE.literal("yPos")]);
|
|
43
|
+
* const strictKeys = DPE.record(keyUnion, DPE.boolean());
|
|
44
|
+
* const strictResult = strictKeys.parse({
|
|
45
|
+
* xPos: true,
|
|
46
|
+
* yPos: false,
|
|
47
|
+
* });
|
|
48
|
+
*
|
|
49
|
+
* const withTemplate = DPE.record(
|
|
50
|
+
* DPE.templateLiteral(["id-", DPE.number()]),
|
|
51
|
+
* DPE.string(),
|
|
52
|
+
* );
|
|
53
|
+
* const templateResult = withTemplate.parse({ "id-1": "value" });
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @see https://utils.duplojs.dev/en/v1/api/dataParser/record
|
|
57
|
+
*
|
|
58
|
+
* @namespace DPE
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
23
61
|
export declare function record<GenericDataParserKey extends dataParsers.DataParserRecordKey, GenericDataParserValue extends DataParser, const GenericDefinition extends Partial<dataParsers.DataParserDefinitionRecord> = never>(key: GenericDataParserKey, value: GenericDataParserValue, definition?: GenericDefinition): DataParserRecordExtended<MergeDefinition<dataParsers.DataParserDefinitionRecord, NeverCoalescing<GenericDefinition, {}> & {
|
|
24
62
|
key: GenericDataParserKey;
|
|
25
63
|
value: GenericDataParserValue;
|
|
@@ -2,6 +2,9 @@ import { dataParserExtendedInit } from '../baseExtended.mjs';
|
|
|
2
2
|
import { record as record$1 } from '../parsers/record/index.mjs';
|
|
3
3
|
import { createOverride } from '../../common/override.mjs';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* {@include dataParser/extended/record/index.md}
|
|
7
|
+
*/
|
|
5
8
|
function record(key, value, definition) {
|
|
6
9
|
const self = dataParserExtendedInit(record$1(key, value, definition), {});
|
|
7
10
|
return record.overrideHandler.apply(self);
|
|
@@ -4,6 +4,9 @@ var baseExtended = require('../baseExtended.cjs');
|
|
|
4
4
|
var recover$1 = require('../parsers/recover.cjs');
|
|
5
5
|
var override = require('../../common/override.cjs');
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* {@include dataParser/extended/recover/index.md}
|
|
9
|
+
*/
|
|
7
10
|
function recover(inner, recoveredValue, definition) {
|
|
8
11
|
const self = baseExtended.dataParserExtendedInit(recover$1.recover(inner, recoveredValue, definition), {});
|
|
9
12
|
return recover.overrideHandler.apply(self);
|