@attocash/commons-test 6.0.0
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/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +332 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +96 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +439 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +238 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +295 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +175 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +380 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +202 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +102 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +264 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +506 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +330 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +767 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +769 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +55 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +155 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +177 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +693 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +174 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +178 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +440 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +95 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +22 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +431 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.mts +19 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +106 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.mts +45 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +524 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.mts +41 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +449 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.mts +41 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +22 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +278 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.mts +36 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +26 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.mts +56 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +35 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +351 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.mts +287 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +62 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2452 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +148 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.mts +29 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.d.mts +39 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.mts +35 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +22 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +240 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
- package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +74 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.mts +55 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +34 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.mts +29 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +22 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +196 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.mts +30 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.d.mts +3 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.mts +39 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +428 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.mts +14 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.d.mts +3 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +86 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.mts +31 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +49 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +15 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.mts +15 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.mts +40 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +351 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
- package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.mts +29 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +169 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.d.mts +39 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs +381 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.d.mts +32 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs +236 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
- package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.d.mts +4 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs +147 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
- package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
- package/commons-commons-core.mjs +34 -0
- package/commons-commons-core.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.mts +115 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +38 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +768 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs +28 -0
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +133 -0
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +195 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2292 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
- package/commons-commons-node-remote.mjs +7 -0
- package/commons-commons-node-remote.mjs.map +1 -0
- package/commons-commons-node.mjs +15 -0
- package/commons-commons-node.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs +53 -0
- package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.d.mts +21 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs +163 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs +193 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.d.mts +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs +84 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs +18 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.d.mts +17 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs +138 -0
- package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs +103 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.d.mts +12 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs +78 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs +18 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.d.mts +12 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs +13 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs.map +1 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs +78 -0
- package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs.map +1 -0
- package/commons-commons-test.mjs +14 -0
- package/commons-commons-test.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +58 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs +16 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs +203 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +351 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +291 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
- package/commons-commons-worker-remote.mjs +7 -0
- package/commons-commons-worker-remote.mjs.map +1 -0
- package/commons-commons-worker.mjs +7 -0
- package/commons-commons-worker.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/index.mjs +1 -0
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
- package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +61 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +36 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs +142 -0
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +100 -0
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +203 -0
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +203 -0
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +107 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +204 -0
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +203 -0
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
- package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +182 -0
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +99 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +271 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +312 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +75 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +249 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +585 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +220 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +126 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +161 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +339 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +175 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +52 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +730 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +91 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +239 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +74 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +44 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +113 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +343 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +181 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +502 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +59 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +50 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +237 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +48 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +166 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +77 -0
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +51 -0
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
- package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
- package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +94 -0
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
- package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
- package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +80 -0
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +316 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
- package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +72 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +52 -0
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
- package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +95 -0
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
- package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +173 -0
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
- package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +166 -0
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +178 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +96 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +163 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +42 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +111 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +152 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs +47 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +66 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +296 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs +141 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +527 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +218 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +164 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +820 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +293 -0
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
- package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs +34 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +798 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +114 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
- package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +181 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +88 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
- package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib.mjs +7 -0
- package/kotlin-kotlin-stdlib.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +237 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +121 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +868 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +61 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +78 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +99 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +93 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +88 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +44 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +145 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +172 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1761 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +64 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +24 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +70 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2791 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +78 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +105 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +94 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +108 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +26 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +27 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +43 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +133 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +79 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +272 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +283 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +340 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +47 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +214 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs +28 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +58 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +49 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +306 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +199 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +335 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +47 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +20 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +52 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +129 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +429 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +587 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +156 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +85 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +524 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +154 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +258 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +27 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +105 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +191 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +280 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +149 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +221 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +300 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +136 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +172 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +194 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +90 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +262 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +323 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +487 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +257 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +29 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +456 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +568 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +764 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +257 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +169 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +243 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +704 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +995 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +582 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +294 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +253 -0
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +136 -0
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +37 -0
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +140 -0
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +346 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +122 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.mts +4 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +90 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +328 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +172 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +141 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +42 -0
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +312 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +238 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +403 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +520 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +399 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +178 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +214 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +342 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +411 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +257 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +56 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +161 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +262 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +44 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +247 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +68 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +260 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +112 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +151 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +155 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +99 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +52 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
- package/ktor-ktor-client-core.mjs +12 -0
- package/ktor-ktor-client-core.mjs.map +1 -0
- package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
- package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
- package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +372 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +245 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +92 -0
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +81 -0
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs +146 -0
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
- package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +139 -0
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +128 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs +344 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +154 -0
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
- package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +35 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +327 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +224 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +547 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +257 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +332 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +24 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +539 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +208 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +358 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +43 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +271 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +87 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +89 -0
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
- package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
- package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs +15 -0
- package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +117 -0
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +407 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +82 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +18 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +27 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +43 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +248 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +442 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
- package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
- package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +126 -0
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +192 -0
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
- package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
- package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +159 -0
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +43 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +221 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +370 -0
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
- package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +60 -0
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +84 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +362 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +89 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +207 -0
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +47 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +148 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +167 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
- package/package.json +23 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import {
|
|
2
|
+
charSequenceLength3278n89t01tmv as charSequenceLength,
|
|
3
|
+
charSequenceGet1vxk1y5n17t1z as charSequenceGet,
|
|
4
|
+
charCodeAt1yspne1d8erbm as charCodeAt,
|
|
5
|
+
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs';
|
|
6
|
+
import {
|
|
7
|
+
Char__toInt_impl_vasixd1agw9q2fuvclj as Char__toInt_impl_vasixd,
|
|
8
|
+
_Char___init__impl__6a9atx2js6krycynjoo as _Char___init__impl__6a9atx,
|
|
9
|
+
toString3o7ifthqydp6e as toString,
|
|
10
|
+
} from '../../../../../kotlin-kotlin-stdlib/kotlin/Char.mjs';
|
|
11
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
12
|
+
import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
|
|
13
|
+
import { IllegalArgumentException2asla15b5jaob as IllegalArgumentException } from '../../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
|
|
14
|
+
import { toString1pkumu07cwy4m as toString_0 } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
15
|
+
import { toByte4i43936u611k as toByte } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs';
|
|
16
|
+
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
17
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
18
|
+
//region block: imports
|
|
19
|
+
var imul = Math.imul;
|
|
20
|
+
//endregion
|
|
21
|
+
//region block: pre-declaration
|
|
22
|
+
//endregion
|
|
23
|
+
var Base32Class;
|
|
24
|
+
function Base32() {
|
|
25
|
+
if (Base32Class === VOID) {
|
|
26
|
+
class $ {
|
|
27
|
+
constructor() {
|
|
28
|
+
Base32_instance = this;
|
|
29
|
+
this.s4l_1 = 'abcdefghijklmnopqrstuvwxyz234567';
|
|
30
|
+
var tmp = this;
|
|
31
|
+
var tmp_0 = 0;
|
|
32
|
+
var tmp_1 = new Int32Array(128);
|
|
33
|
+
while (tmp_0 < 128) {
|
|
34
|
+
tmp_1[tmp_0] = -1;
|
|
35
|
+
tmp_0 = tmp_0 + 1 | 0;
|
|
36
|
+
}
|
|
37
|
+
// Inline function 'kotlin.apply' call
|
|
38
|
+
// Inline function 'kotlin.text.forEachIndexed' call
|
|
39
|
+
var index = 0;
|
|
40
|
+
var indexedObject = Base32_getInstance().s4l_1;
|
|
41
|
+
var inductionVariable = 0;
|
|
42
|
+
while (inductionVariable < charSequenceLength(indexedObject)) {
|
|
43
|
+
var item = charSequenceGet(indexedObject, inductionVariable);
|
|
44
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
45
|
+
var _unary__edvuaz = index;
|
|
46
|
+
index = _unary__edvuaz + 1 | 0;
|
|
47
|
+
// Inline function 'kotlin.code' call
|
|
48
|
+
tmp_1[Char__toInt_impl_vasixd(item)] = _unary__edvuaz;
|
|
49
|
+
}
|
|
50
|
+
// Inline function 'kotlin.text.uppercase' call
|
|
51
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
52
|
+
// Inline function 'kotlin.text.forEachIndexed' call
|
|
53
|
+
var index_0 = 0;
|
|
54
|
+
var indexedObject_0 = Base32_getInstance().s4l_1.toUpperCase();
|
|
55
|
+
var inductionVariable_0 = 0;
|
|
56
|
+
while (inductionVariable_0 < charSequenceLength(indexedObject_0)) {
|
|
57
|
+
var item_0 = charSequenceGet(indexedObject_0, inductionVariable_0);
|
|
58
|
+
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
59
|
+
var _unary__edvuaz_0 = index_0;
|
|
60
|
+
index_0 = _unary__edvuaz_0 + 1 | 0;
|
|
61
|
+
// Inline function 'kotlin.code' call
|
|
62
|
+
tmp_1[Char__toInt_impl_vasixd(item_0)] = _unary__edvuaz_0;
|
|
63
|
+
}
|
|
64
|
+
tmp.t4l_1 = tmp_1;
|
|
65
|
+
}
|
|
66
|
+
v4l(data) {
|
|
67
|
+
var result = StringBuilder().a1();
|
|
68
|
+
var buffer = 0;
|
|
69
|
+
var bitsLeft = 0;
|
|
70
|
+
// Inline function 'kotlin.collections.forEach' call
|
|
71
|
+
var inductionVariable = 0;
|
|
72
|
+
var last = data.length;
|
|
73
|
+
while (inductionVariable < last) {
|
|
74
|
+
var element = data[inductionVariable];
|
|
75
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
76
|
+
buffer = buffer << 8 | element & 255;
|
|
77
|
+
bitsLeft = bitsLeft + 8 | 0;
|
|
78
|
+
while (bitsLeft >= 5) {
|
|
79
|
+
result.jb(charCodeAt(Base32_getInstance().s4l_1, buffer >> (bitsLeft - 5 | 0) & 31));
|
|
80
|
+
bitsLeft = bitsLeft - 5 | 0;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
if (bitsLeft > 0) {
|
|
84
|
+
result.jb(charCodeAt(this.s4l_1, buffer << (5 - bitsLeft | 0) & 31));
|
|
85
|
+
}
|
|
86
|
+
while (!((result.a() % 8 | 0) === 0)) {
|
|
87
|
+
result.ib('=');
|
|
88
|
+
}
|
|
89
|
+
return result.toString();
|
|
90
|
+
}
|
|
91
|
+
u4l(base32) {
|
|
92
|
+
// Inline function 'kotlin.text.filter' call
|
|
93
|
+
// Inline function 'kotlin.text.filterTo' call
|
|
94
|
+
var destination = StringBuilder().a1();
|
|
95
|
+
var inductionVariable = 0;
|
|
96
|
+
var last = charSequenceLength(base32);
|
|
97
|
+
if (inductionVariable < last)
|
|
98
|
+
do {
|
|
99
|
+
var index = inductionVariable;
|
|
100
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
101
|
+
var element = charSequenceGet(base32, index);
|
|
102
|
+
if (!(element === _Char___init__impl__6a9atx(61))) {
|
|
103
|
+
destination.jb(element);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
while (inductionVariable < last);
|
|
107
|
+
// Inline function 'kotlin.text.lowercase' call
|
|
108
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
109
|
+
var data = destination.toString().toLowerCase();
|
|
110
|
+
var output = new Int8Array(imul(data.length, 5) / 8 | 0);
|
|
111
|
+
var buffer = 0;
|
|
112
|
+
var bitsLeft = 0;
|
|
113
|
+
var index_0 = 0;
|
|
114
|
+
// Inline function 'kotlin.text.forEach' call
|
|
115
|
+
var inductionVariable_0 = 0;
|
|
116
|
+
while (inductionVariable_0 < charSequenceLength(data)) {
|
|
117
|
+
var element_0 = charSequenceGet(data, inductionVariable_0);
|
|
118
|
+
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
119
|
+
var tmp = Base32_getInstance().t4l_1;
|
|
120
|
+
// Inline function 'kotlin.code' call
|
|
121
|
+
var value = tmp[Char__toInt_impl_vasixd(element_0)];
|
|
122
|
+
// Inline function 'kotlin.require' call
|
|
123
|
+
if (!!(value === -1)) {
|
|
124
|
+
var message = 'Invalid Base32 character: ' + toString(element_0);
|
|
125
|
+
throw IllegalArgumentException().i1(toString_0(message));
|
|
126
|
+
}
|
|
127
|
+
buffer = buffer << 5 | value;
|
|
128
|
+
bitsLeft = bitsLeft + 5 | 0;
|
|
129
|
+
if (bitsLeft >= 8) {
|
|
130
|
+
var _unary__edvuaz = index_0;
|
|
131
|
+
index_0 = _unary__edvuaz + 1 | 0;
|
|
132
|
+
output[_unary__edvuaz] = toByte(buffer >> (bitsLeft - 8 | 0));
|
|
133
|
+
bitsLeft = bitsLeft - 8 | 0;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
return output;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
initMetadataForObject($, 'Base32');
|
|
140
|
+
Base32Class = $;
|
|
141
|
+
}
|
|
142
|
+
return Base32Class;
|
|
143
|
+
}
|
|
144
|
+
var Base32_instance;
|
|
145
|
+
function Base32_getInstance() {
|
|
146
|
+
if (Base32_instance === VOID)
|
|
147
|
+
new (Base32())();
|
|
148
|
+
return Base32_instance;
|
|
149
|
+
}
|
|
150
|
+
//region block: exports
|
|
151
|
+
export {
|
|
152
|
+
Base32_getInstance as Base32_getInstance1zhax53mffzee,
|
|
153
|
+
};
|
|
154
|
+
//endregion
|
|
155
|
+
|
|
156
|
+
//# sourceMappingURL=Base32.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-core/src/commonMain/kotlin/cash/atto/commons/utils/Base32.kt","common/src/generated/_Strings.kt","src/kotlin/CharCode.kt","js/src/kotlin/text/stringJs.kt","common/src/generated/_Arrays.kt","src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["index","item","encode","data","result","buffer","bitsLeft","element","decode","base32","output","value","message"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;QAG2B,+C;kBAEE,I;YAArB,S;YAAA,uBAAS,GAAT,C;eAAA,QAAS,G,EAAT;A,UAAA,eAAgB,E;UAAhB,qB;QAAmB,C;;;YC8pCvBA,QAAY,C;YACC,qCD9pCL,K;YC8pCK,qB;eAAb,oBAAa,iC,EAAb;A,cAAKC,OAAQ,iD;UAAA,6C;cAAa,sB;UAAA,QAAA,cAAK,IAAL,I;;UD/pCtB,KAC6C,CEuCP,wBDunCP,ICvnCO,CFvCO,IC8pCvB,c;;;;;YAD1BD,UAAY,C;YACC,kBE/8BiD,qBH9MtD,KG8MsD,c;YF+8BjD,uB;eAAb,sBAAa,mC,EAAb;A,cAAKC,SAAQ,qD;UAAA,iD;cAAa,0B;UAAA,UAAA,gBAAK,IAAL,I;;UD/pCtB,KAEyD,CEsCnB,wBDunCP,MCvnCO,CFtCmB,IC6pCnC,gB;;QD/pCD,YAArB,K;;SAKJC,CAAWC,IAAXD,EAAoC;A,YAChCE,6B;YACAC,SAAa,C;YACbC,WAAe,C;;YIs+aH,qB;YAAA,OJr+aZ,IIq+aY,O;eAAhB,oBAAgB,I,EAAhB;A,cAAKC,UJr+aD,IIq+aY,mB;UAAA,6C;UJp+aR,SAAU,UAAW,CAAZ,GIo+aY,OJp+aO,GAAiB,G;UAC7C,sBAAY,CAAZ,I;iBACO,YAAY,C,EAAG;A,YAClB,MAAO,IAAO,uCAAU,WAAY,WAAW,CAAvB,KAAD,GAAgC,EAAzC,CAAP,C;YACP,sBAAY,CAAZ,I;UACJ,C;;QAEA,eAAW,CAAX,C,CAAc;A,UACd,MAAO,IAAO,uBAAU,WAAY,IAAI,QAAhB,KAAD,GAAgC,EAAzC,CAAP,C;QACX,C;eACO,GAAA,MAAO,IAAP,GAAgB,CAAhB,UAAqB,CAArB,C,EAAwB;A,UAC3B,MAAO,IAAO,GAAP,C;QACX,C;QACA,OAAO,MAAO,W;MAClB,C;SAEAC,CAAWC,MAAXD,EAAsC;A;;0BCkZtB,oB;YAyEF,qB;YAAQ,0BD1dP,MC0dO,C;QAAtB,wBAAc,IAAd,C;aAAA;A,gBAAKR,QAAS,iB;YAAA,6C;gBACVO,UAAc,gBD3dH,MC2dG,EAAI,KAAJ,C;YACV,ID5duB,EC4db,OD5da,KAAM,8BAAN,CC4dvB,C,CAAgC;A,cAAZ,WAAY,IAAO,OAAP,C;;;UAFxC,4BAAc,IAAd,C;;;YD1dIJ,OC8dG,WA7EqC,WExMkB,c;YHxM1DO,SAAa,cAAW,UAAK,MAAL,EAAc,CAAd,CAAD,GAAoB,CAA9B,K;YACbL,SAAa,C;YACbC,WAAe,C;YACfN,UAAY,C;;YCsnCA,uB;eAAhB,sBAAgB,mBDrnCZ,ICqnCY,C,EAAhB;A,cAAKO,YAAW,gBDrnCZ,ICqnCY,sB;UAAA,iD;yCDpnCI,K;;cAAZI,QAAY,IEOsB,wBD6mCb,SC7mCa,CFPtB,C;;UKHhB,KLIY,YAAS,EAAT,CKJZ,C,CAAQ;A,gBACRC,ULG4B,4BAAD,YCmnCF,SDnnCE,C;YKF3B,oCAAuC,WAAR,OAAQ,CAAvC,C;UACJ,C;ULEQ,SAAU,UAAW,CAAZ,GAAkB,K;UAC3B,sBAAY,CAAZ,I;UACI,gBAAY,CAAZ,C,CAAe;A,gBACR,wB;YAAA,UAAA,cAAK,IAAL,I;YAAP,OAAO,cAAP,IAA8C,OAA3B,WAAY,WAAW,CAAvB,KAA2B,C;YAC9C,sBAAY,CAAZ,I;UACJ,C;;QAEJ,OAAO,M;MACX,C;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { _UInt___get_data__impl__f0vqqw13y1a2xkii3dn as _UInt___get_data__impl__f0vqqw } from '../../../../../kotlin-kotlin-stdlib/kotlin/UInt.mjs';
|
|
2
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
3
|
+
import { toByteArray3f5i5urnfv0wu as toByteArray } from '../Extensions.mjs';
|
|
4
|
+
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
5
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
6
|
+
//region block: imports
|
|
7
|
+
//endregion
|
|
8
|
+
//region block: pre-declaration
|
|
9
|
+
//endregion
|
|
10
|
+
var SecureRandomClass;
|
|
11
|
+
function SecureRandom() {
|
|
12
|
+
if (SecureRandomClass === VOID) {
|
|
13
|
+
class $ {
|
|
14
|
+
k4q(size) {
|
|
15
|
+
// Inline function 'kotlin.UInt.toInt' call
|
|
16
|
+
var tmp$ret$0 = _UInt___get_data__impl__f0vqqw(size);
|
|
17
|
+
var uint8Array = new Uint8Array(tmp$ret$0);
|
|
18
|
+
crypto.getRandomValues(uint8Array);
|
|
19
|
+
return toByteArray(uint8Array);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
initMetadataForObject($, 'SecureRandom');
|
|
23
|
+
SecureRandomClass = $;
|
|
24
|
+
}
|
|
25
|
+
return SecureRandomClass;
|
|
26
|
+
}
|
|
27
|
+
var SecureRandom_instance;
|
|
28
|
+
function SecureRandom_getInstance() {
|
|
29
|
+
return SecureRandom_instance;
|
|
30
|
+
}
|
|
31
|
+
//region block: init
|
|
32
|
+
SecureRandom_instance = new (SecureRandom())();
|
|
33
|
+
//endregion
|
|
34
|
+
//region block: exports
|
|
35
|
+
export {
|
|
36
|
+
SecureRandom_instance as SecureRandom_instance3d03x1xookdam,
|
|
37
|
+
};
|
|
38
|
+
//endregion
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=SecureRandom.js.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-core/src/jsMain/kotlin/cash/atto/commons/utils/SecureRandom.js.kt","unsigned/src/kotlin/UInt.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["randomByteArray","size","uint8Array"],"mappings":";;;;;;;;;;;;;SAMWA,CAAoBC,IAApBD,EAA2C;A;YCiTb,YAAJ,+BDhTD,ICgTC,C;YDhT7BE,aAAiB,eAAgB,SAAhB,C;QAEd,MAAH,iBAA6B,UAA7B,C;QAEA,OAAkB,YAAX,UAAW,C;MACtB,C;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
//region block: pre-declaration
|
|
2
|
+
//endregion
|
|
3
|
+
function getSubtleCryptoInstance() {
|
|
4
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
5
|
+
return function () {
|
|
6
|
+
// ── Are we running under Node? ────────────────────────────────
|
|
7
|
+
var isNode = typeof process !== 'undefined' && process.versions && process.versions.node;
|
|
8
|
+
if (isNode) {
|
|
9
|
+
// Node ≥20 already exposes a global WebCrypto.
|
|
10
|
+
if (globalThis.crypto && globalThis.crypto.subtle) {
|
|
11
|
+
return globalThis.crypto.subtle;
|
|
12
|
+
}
|
|
13
|
+
; // Older Node in Common-JS mode: use plain require.
|
|
14
|
+
if (typeof require === 'function') {
|
|
15
|
+
return require('node:crypto').webcrypto.subtle;
|
|
16
|
+
}
|
|
17
|
+
/*Older Node in ES-module mode: no reliable *sync* way to
|
|
18
|
+
reach `createRequire` without `module`. Simply fall back
|
|
19
|
+
to browser path – most test runners (vitest, jest-js-dom,
|
|
20
|
+
karma) inject a `window.crypto.subtle` shim anyway.*/;
|
|
21
|
+
}
|
|
22
|
+
; // ── Browser / worker fallback ─────────────────────────────────
|
|
23
|
+
var root = typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}; // very old JS engines
|
|
24
|
+
var cryptoObj = root.crypto ? root.crypto : root.msCrypto;
|
|
25
|
+
if (!cryptoObj || !cryptoObj.subtle) {
|
|
26
|
+
throw new Error('WebCrypto SubtleCrypto API not available');
|
|
27
|
+
}
|
|
28
|
+
return cryptoObj.subtle;
|
|
29
|
+
}();
|
|
30
|
+
}
|
|
31
|
+
//region block: exports
|
|
32
|
+
export {
|
|
33
|
+
getSubtleCryptoInstance as getSubtleCryptoInstance2vzx8jxte0jc2,
|
|
34
|
+
};
|
|
35
|
+
//endregion
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=SubtleCrypto.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-core/src/jsMain/kotlin/cash/atto/commons/utils/SubtleCrypto.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["getSubtleCryptoInstance","isNode","root","cryptoObj"],"mappings":";;gCA6BAA,CAAAA,EACI;A;EAoC4B,OAA1B,UAAA,E;IAjCE;QAAIC,SACA,OAAO,OAAQ,KAAI,WAAY,IAC/B,OAD+B,CACvB,QAAS,IAAG,OAAH,CAAW,QAAX,CAAoB,I;IAEzC,IAAI,MAAJ,C,CAAY;A;MAER,IAAI,UAAkB,CAAP,MAAO,IAAG,UAAH,CAAc,MAAd,CAAqB,MAA3C,C,CAAmD;A,QAC/C,OAAO,UAAP,CAAkB,MAAlB,CAAyB,M;;;MAI7B,IAAI,OAAO,OAAQ,KAAI,UAAvB,C,CAAmC;A,QAC/B,OAAO,OAAO,CAAC,aAAD,CAAd,CAA8B,SAA9B,CAAwC,M;;;;;;;;IAUhD,IAAIC,OACA,OAAO,MAAO,KAAI,WAAa,GAAE,MAAF,GAC/B,OAAO,IAAO,KAAI,WAAa,GAAE,IAAF,GAC/B,EAHJ;A,IAKA,IAAIC,YAAY,IAAY,CAAP,MAAO,GAAE,IAAF,CAAO,MAAP,GAAgB,IAAhB,CAAqB,Q;IACjD,IAAI,CAAC,SAAU,IAAG,CAAC,SAAD,CAAW,MAA7B,C,CAAqC;A,MACjC,MAAM,IAAI,KAAJ,CAAU,0CAAV,C;;IAEV,OAAO,SAAP,CAAiB,M;GAEnB,E;AAAyB,C;;;;;"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
//region block: pre-declaration
|
|
2
|
+
//endregion
|
|
3
|
+
//region block: exports
|
|
4
|
+
export * from './commons-commons-core/cash/atto/commons/AttoAccount.export.mjs';
|
|
5
|
+
export * from './commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs';
|
|
6
|
+
export * from './commons-commons-core/cash/atto/commons/AttoAddress.export.mjs';
|
|
7
|
+
export * from './commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs';
|
|
8
|
+
export * from './commons-commons-core/cash/atto/commons/AttoAmount.export.mjs';
|
|
9
|
+
export * from './commons-commons-core/cash/atto/commons/AttoBlock.export.mjs';
|
|
10
|
+
export * from './commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs';
|
|
11
|
+
export * from './commons-commons-core/cash/atto/commons/AttoHash.export.mjs';
|
|
12
|
+
export * from './commons-commons-core/cash/atto/commons/AttoHeight.export.mjs';
|
|
13
|
+
export * from './commons-commons-core/cash/atto/commons/AttoInstant.export.mjs';
|
|
14
|
+
export * from './commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs';
|
|
15
|
+
export * from './commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs';
|
|
16
|
+
export * from './commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs';
|
|
17
|
+
export * from './commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs';
|
|
18
|
+
export * from './commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs';
|
|
19
|
+
export * from './commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs';
|
|
20
|
+
export * from './commons-commons-core/cash/atto/commons/AttoSeed.export.mjs';
|
|
21
|
+
export * from './commons-commons-core/cash/atto/commons/AttoSignature.export.mjs';
|
|
22
|
+
export * from './commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs';
|
|
23
|
+
export * from './commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs';
|
|
24
|
+
export * from './commons-commons-core/cash/atto/commons/AttoVersion.export.mjs';
|
|
25
|
+
export * from './commons-commons-core/cash/atto/commons/AttoVote.export.mjs';
|
|
26
|
+
export * from './commons-commons-core/cash/atto/commons/AttoWork.export.mjs';
|
|
27
|
+
export * from './commons-commons-core/cash/atto/commons/Extensions.export.mjs';
|
|
28
|
+
export * from './commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs';
|
|
29
|
+
export * from './commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs';
|
|
30
|
+
export * from './commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs';
|
|
31
|
+
export * from './commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs';
|
|
32
|
+
//endregion
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=commons-commons-core.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { initMetadataForCompanion1wyw17z38v6ac as initMetadataForCompanion } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
2
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
3
|
+
//region block: imports
|
|
4
|
+
//endregion
|
|
5
|
+
//region block: pre-declaration
|
|
6
|
+
//endregion
|
|
7
|
+
var CompanionClass;
|
|
8
|
+
function Companion() {
|
|
9
|
+
if (CompanionClass === VOID) {
|
|
10
|
+
class $ {}
|
|
11
|
+
initMetadataForCompanion($);
|
|
12
|
+
CompanionClass = $;
|
|
13
|
+
}
|
|
14
|
+
return CompanionClass;
|
|
15
|
+
}
|
|
16
|
+
var Companion_instance;
|
|
17
|
+
function Companion_getInstance() {
|
|
18
|
+
return Companion_instance;
|
|
19
|
+
}
|
|
20
|
+
//region block: init
|
|
21
|
+
Companion_instance = new (Companion())();
|
|
22
|
+
//endregion
|
|
23
|
+
//region block: exports
|
|
24
|
+
export {
|
|
25
|
+
Companion_instance as Companion_instance23nf71za4dwtz,
|
|
26
|
+
};
|
|
27
|
+
//endregion
|
|
28
|
+
|
|
29
|
+
//# sourceMappingURL=AttoNodeClient.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare class AttoNodeClientAsync /* implements AutoCloseable */ {
|
|
4
|
+
constructor(client: any/* AttoNodeClient */, dispatcher?: any/* CoroutineDispatcher */);
|
|
5
|
+
get client(): any/* AttoNodeClient */;
|
|
6
|
+
account(addresses: any/* Collection<AttoAddress> */): AttoFuture<any/* Collection<AttoAccount> */>;
|
|
7
|
+
onAccount(addresses: any/* Collection<AttoAddress> */, onAccount: (p0: AttoAccount) => void, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
8
|
+
onReceivable$default(publicKey: AttoPublicKey, minAmount: AttoAmount | undefined, onReceivable: any/* AttoConsumer<AttoReceivable> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
9
|
+
onReceivable(addresses: any/* Collection<AttoAddress> */, minAmount: AttoAmount | undefined, onReceivable: any/* AttoConsumer<AttoReceivable> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
10
|
+
accountEntry(hash: AttoHash): AttoFuture<AttoAccountEntry>;
|
|
11
|
+
onAccountEntry$default(publicKey: AttoPublicKey, fromHeight: AttoHeight | undefined, toHeight: Nullable<AttoHeight> | undefined, onAccountEntry: any/* AttoConsumer<AttoAccountEntry> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
12
|
+
onAccountEntry(heightSearch: HeightSearch, onAccountEntry: any/* AttoConsumer<AttoAccountEntry> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
13
|
+
transaction(hash: AttoHash): AttoFuture<AttoTransaction>;
|
|
14
|
+
onTransaction$default(publicKey: AttoPublicKey, fromHeight: AttoHeight | undefined, toHeight: Nullable<AttoHeight> | undefined, onTransaction: any/* AttoConsumer<AttoTransaction> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
15
|
+
onTransaction(heightSearch: HeightSearch, onTransaction: any/* AttoConsumer<AttoTransaction> */, onCancel: any/* AttoConsumer<Nullable<Exception>> */): any/* AttoJob */;
|
|
16
|
+
now(): AttoFuture<AttoInstant>;
|
|
17
|
+
publish(transaction: AttoTransaction): AttoFuture<void>;
|
|
18
|
+
}
|
|
19
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
20
|
+
export declare namespace AttoNodeClientAsync.$metadata$ {
|
|
21
|
+
const constructor: abstract new () => AttoNodeClientAsync;
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AttoNodeClientAsync3nlt3uriuqtu9 as AttoNodeClientAsync } from './AttoNodeClientAsync.mjs';
|
|
2
|
+
//region block: imports
|
|
3
|
+
//endregion
|
|
4
|
+
//region block: pre-declaration
|
|
5
|
+
//endregion
|
|
6
|
+
//region block: exports
|
|
7
|
+
var AttoNodeClientAsync_0 = AttoNodeClientAsync();
|
|
8
|
+
export {
|
|
9
|
+
AttoNodeClientAsync_0 as AttoNodeClientAsync,
|
|
10
|
+
};
|
|
11
|
+
//endregion
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=AttoNodeClientAsync.export.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;"}
|