@attocash/commons-js 5.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/Clock.mjs +34 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +323 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +100 -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/Instant.mjs +258 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +24 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +247 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +157 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +174 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +126 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +194 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +263 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +845 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +95 -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 +243 -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 +864 -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 +317 -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 +756 -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 +682 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +52 -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 +240 -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 +175 -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 +698 -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 +71 -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 +124 -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 +683 -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 +94 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +46 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +57 -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 +442 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.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/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.ts +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 +109 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.ts +41 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +534 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.ts +37 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +468 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.ts +36 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +236 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.ts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +25 -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.ts +51 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +30 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +341 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.ts +252 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2483 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +141 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +19 -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/AttoHash.export.d.ts +35 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +19 -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.ts +30 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +233 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.ts +51 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +33 -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.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +19 -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 +189 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.ts +26 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.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.ts +34 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +413 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.ts +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.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.ts +27 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +19 -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.export.d.ts +14 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +478 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +169 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.ts +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.ts +34 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +338 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +156 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.d.ts +35 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs +387 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.d.ts +29 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs +250 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.d.ts +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 +99 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +55 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +54 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.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.mjs +29 -0
- package/commons-commons-core.mjs.map +1 -0
- package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs +14 -0
- package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs.map +1 -0
- package/commons-commons-js.mjs +10 -0
- package/commons-commons-js.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.ts +99 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +37 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +21 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +4 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +94 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +865 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +1857 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.d.ts +3 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs +12 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs +577 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.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 +7 -0
- package/commons-commons-node.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +73 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +10 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +4 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs +22 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +399 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts +3 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +12 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +272 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +402 -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 +4 -0
- package/commons-commons-worker.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/index.mjs +5 -0
- package/kotlin-kotlin-stdlib/KTypeHelpers.mjs +47 -0
- package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +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/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/Number.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/Number.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +163 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs +143 -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 +103 -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 +186 -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 +186 -0
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +108 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +187 -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 +186 -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 +169 -0
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +101 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +244 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +311 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +224 -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 +547 -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 +214 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +128 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +92 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +313 -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 +174 -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 +54 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +726 -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 +45 -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 +210 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +47 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +58 -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 +114 -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 +318 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +182 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +501 -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 +32 -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/comparisons/Comparisons.mjs +23 -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 +238 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +150 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +55 -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 +139 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +69 -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 +46 -0
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +50 -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 +95 -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 +79 -0
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +285 -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/primitiveCompanionObjects.mjs +238 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +73 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +75 -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 +78 -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 +174 -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/longJs.mjs +387 -0
- package/kotlin-kotlin-stdlib/kotlin/longJs.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 +74 -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 +246 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +130 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +226 -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 +52 -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 +115 -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 +183 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.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 +64 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +285 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.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 +520 -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 +220 -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 +154 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +847 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +291 -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/Duration.mjs +773 -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 +111 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +179 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +84 -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/reflection.mjs +181 -0
- package/kotlin-kotlin-stdlib/reflection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +38 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +26 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +34 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +53 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.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 +232 -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 +285 -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 +855 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +105 -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 +96 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +87 -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 +78 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +83 -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 +59 -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 +134 -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 +213 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1910 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +56 -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 +175 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +67 -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 +3352 -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 +76 -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 +106 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +93 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +135 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +100 -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/Reduce.mjs +196 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.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 +31 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.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 +49 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +15 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +302 -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/LinkedList.mjs +86 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.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 +23 -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 +50 -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 +133 -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/Semaphore.mjs +453 -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 +599 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +153 -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 +81 -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 +528 -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 +148 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +249 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +24 -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 +107 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +193 -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 +282 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +153 -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 +216 -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 +304 -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 +137 -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 +135 -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 +198 -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 +92 -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 +260 -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 +333 -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 +488 -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 +260 -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 +31 -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 +431 -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 +570 -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 +756 -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 +259 -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 +155 -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 +364 -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 +699 -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 +990 -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-cio/io/ktor/client/engine/cio/CIOCommon.mjs +56 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +381 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +52 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +161 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +39 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +1338 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +122 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +12 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts +4 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +13 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +29 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +1339 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +1 -0
- package/ktor-ktor-client-cio.mjs +12 -0
- package/ktor-ktor-client-cio.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +816 -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 +430 -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 +311 -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 +183 -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 +47 -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 +179 -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 +476 -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.js.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +128 -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/ProxyConfig.mjs +40 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.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.ts +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 +92 -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 +496 -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 +330 -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 +212 -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 +31 -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 +467 -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 +288 -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 +632 -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 +916 -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 +524 -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 +288 -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 +358 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +420 -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 +513 -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 +333 -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 +52 -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 +245 -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 +297 -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/SSE.mjs +46 -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 +332 -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 +100 -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 +286 -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/UnixSockets.mjs +46 -0
- package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.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 +197 -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 +153 -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 +417 -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 +209 -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 +55 -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 +373 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +244 -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 +95 -0
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +108 -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 +144 -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 +141 -0
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +187 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs +384 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +157 -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 +36 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +680 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +221 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +171 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +389 -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 +468 -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 +888 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +51 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +58 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +314 -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 +477 -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 +61 -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 +700 -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 +414 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +28 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.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 +1825 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +124 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +509 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +107 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +89 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +139 -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/LineEndingMode.mjs +118 -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 +406 -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 +78 -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 +17 -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 +38 -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 +54 -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/Memory.mjs +22 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Memory.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-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +22 -0
- package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +42 -0
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +35 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +107 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +304 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +573 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +26 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +129 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +33 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +71 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +34 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +41 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +56 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +163 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +18 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +99 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +22 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +33 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.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 +419 -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 +790 -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 +127 -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 +181 -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 +152 -0
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +45 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +225 -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 +377 -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/cio/Channels.mjs +32 -0
- package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +113 -0
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.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 +61 -0
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +11 -0
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.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/network/NetworkAddressJs.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +145 -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 +366 -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 +91 -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 +217 -0
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +49 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +204 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +47 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +173 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +47 -0
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +19 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +846 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +1 -0
- package/package.json +23 -0
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import {
|
|
2
|
+
fromHexToByteArrayplx5jrfi7guj as fromHexToByteArray,
|
|
3
|
+
checkLength3j1sz9qw7d9m6 as checkLength,
|
|
4
|
+
toHexcxaq2tti5e5x as toHex,
|
|
5
|
+
} from './Extensions.mjs';
|
|
6
|
+
import {
|
|
7
|
+
initMetadataForCompanion1wyw17z38v6ac as initMetadataForCompanion,
|
|
8
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
9
|
+
initMetadataForObject1cxne3s9w65el as initMetadataForObject,
|
|
10
|
+
} from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
11
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
12
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
13
|
+
import {
|
|
14
|
+
contentEquals1cdp6c846cfdi as contentEquals,
|
|
15
|
+
contentHashCode25jw6rgkgywwr as contentHashCode,
|
|
16
|
+
} from '../../../../kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs';
|
|
17
|
+
import { STRING_getInstance2ou4lro9xn2qn as STRING_getInstance } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs';
|
|
18
|
+
import { PrimitiveSerialDescriptor3egfp53lutxj2 as PrimitiveSerialDescriptor } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs';
|
|
19
|
+
import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
20
|
+
import { KSerializerzf77vz1967fq as KSerializer } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs';
|
|
21
|
+
//region block: imports
|
|
22
|
+
//endregion
|
|
23
|
+
//region block: pre-declaration
|
|
24
|
+
//endregion
|
|
25
|
+
var CompanionClass;
|
|
26
|
+
function Companion() {
|
|
27
|
+
if (CompanionClass === VOID) {
|
|
28
|
+
class $ {
|
|
29
|
+
constructor() {
|
|
30
|
+
this.SIZE = 64;
|
|
31
|
+
}
|
|
32
|
+
t32() {
|
|
33
|
+
return this.SIZE;
|
|
34
|
+
}
|
|
35
|
+
parse(value) {
|
|
36
|
+
return new (AttoSignature())(fromHexToByteArray(value));
|
|
37
|
+
}
|
|
38
|
+
q2u() {
|
|
39
|
+
return AttoSignatureSerializer_getInstance();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
initMetadataForCompanion($);
|
|
43
|
+
CompanionClass = $;
|
|
44
|
+
}
|
|
45
|
+
return CompanionClass;
|
|
46
|
+
}
|
|
47
|
+
var Companion_instance;
|
|
48
|
+
function Companion_getInstance() {
|
|
49
|
+
return Companion_instance;
|
|
50
|
+
}
|
|
51
|
+
var AttoSignatureClass;
|
|
52
|
+
function AttoSignature() {
|
|
53
|
+
if (AttoSignatureClass === VOID) {
|
|
54
|
+
class $ {
|
|
55
|
+
constructor(value) {
|
|
56
|
+
this.value = value;
|
|
57
|
+
checkLength(this.value, 64);
|
|
58
|
+
}
|
|
59
|
+
s1() {
|
|
60
|
+
return this.value;
|
|
61
|
+
}
|
|
62
|
+
equals(other) {
|
|
63
|
+
if (this === other)
|
|
64
|
+
return true;
|
|
65
|
+
if (!(other instanceof AttoSignature()))
|
|
66
|
+
return false;
|
|
67
|
+
return contentEquals(this.value, other.value);
|
|
68
|
+
}
|
|
69
|
+
hashCode() {
|
|
70
|
+
return contentHashCode(this.value);
|
|
71
|
+
}
|
|
72
|
+
toString() {
|
|
73
|
+
return toHex(this.value);
|
|
74
|
+
}
|
|
75
|
+
gl() {
|
|
76
|
+
return this.value;
|
|
77
|
+
}
|
|
78
|
+
h31(value) {
|
|
79
|
+
return new (AttoSignature())(value);
|
|
80
|
+
}
|
|
81
|
+
copy(value, $super) {
|
|
82
|
+
value = value === VOID ? this.value : value;
|
|
83
|
+
return $super === VOID ? this.h31(value) : $super.h31.call(this, value);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
initMetadataForClass($, 'AttoSignature', VOID, VOID, VOID, VOID, VOID, {0: AttoSignatureSerializer_getInstance});
|
|
87
|
+
AttoSignatureClass = $;
|
|
88
|
+
}
|
|
89
|
+
return AttoSignatureClass;
|
|
90
|
+
}
|
|
91
|
+
var AttoSignatureSerializerClass;
|
|
92
|
+
function AttoSignatureSerializer() {
|
|
93
|
+
if (AttoSignatureSerializerClass === VOID) {
|
|
94
|
+
class $ {
|
|
95
|
+
constructor() {
|
|
96
|
+
AttoSignatureSerializer_instance = this;
|
|
97
|
+
this.u32_1 = PrimitiveSerialDescriptor('AttoSignature', STRING_getInstance());
|
|
98
|
+
}
|
|
99
|
+
xs() {
|
|
100
|
+
return this.u32_1;
|
|
101
|
+
}
|
|
102
|
+
v32(encoder, value) {
|
|
103
|
+
encoder.oy(value.toString());
|
|
104
|
+
}
|
|
105
|
+
ys(encoder, value) {
|
|
106
|
+
return this.v32(encoder, value instanceof AttoSignature() ? value : THROW_CCE());
|
|
107
|
+
}
|
|
108
|
+
zs(decoder) {
|
|
109
|
+
return Companion_instance.parse(decoder.fx());
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
initMetadataForObject($, 'AttoSignatureSerializer', VOID, VOID, [KSerializer()]);
|
|
113
|
+
AttoSignatureSerializerClass = $;
|
|
114
|
+
}
|
|
115
|
+
return AttoSignatureSerializerClass;
|
|
116
|
+
}
|
|
117
|
+
var AttoSignatureSerializer_instance;
|
|
118
|
+
function AttoSignatureSerializer_getInstance() {
|
|
119
|
+
if (AttoSignatureSerializer_instance === VOID)
|
|
120
|
+
new (AttoSignatureSerializer())();
|
|
121
|
+
return AttoSignatureSerializer_instance;
|
|
122
|
+
}
|
|
123
|
+
//region block: init
|
|
124
|
+
Companion_instance = new (Companion())();
|
|
125
|
+
//endregion
|
|
126
|
+
//region block: exports
|
|
127
|
+
export {
|
|
128
|
+
Companion as Companion293znhsoi7mqw,
|
|
129
|
+
AttoSignature as AttoSignaturef1rb35b89r5k,
|
|
130
|
+
Companion_getInstance as Companion_getInstance28m2lma37e0j2,
|
|
131
|
+
AttoSignatureSerializer_getInstance as AttoSignatureSerializer_getInstance3bpzi0enncrk0,
|
|
132
|
+
};
|
|
133
|
+
//endregion
|
|
134
|
+
|
|
135
|
+
//# sourceMappingURL=AttoSignature.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-core/src/commonMain/kotlin/cash/atto/commons/AttoSignature.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-SIZE>","parse","value","serializer","<get-value>","equals","other","hashCode","toString","<get-descriptor>","serialize","encoder","deserialize","decoder"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAkByB,c;;SAAjBA,CAAAA,EAAA;A,QAAA,gB;MAAa,C;WAEbC,CAAUC,KAAVD,EAAwC;A,QACpC,6BAA2B,mBAAN,KAAM,CAA3B,C;MACJ,C;SALJE,CAAAA,EAAA;A,QAAA,4C;MAMA,C;;;;;;;;;;;;;;;kBARAD,K;QAAA,kB;QAWU,YAAN,IAAM,CAAN,KAAM,EAAY,EAAZ,C;;QAXVE,CAAAA,EAAA;A,QAAA,iB;MAAmB,C;YAcnBC,CAAoBC,KAApBD,EAA0C;A,QAClC,aAAS,KAAT,C;UAAgB,OAAO,I;QACvB,wC;UAAyB,OAAO,K;QAEpC,OAAa,cAAN,IAAM,CAAN,KAAM,EAAc,KAAd,CAAoB,KAApB,C;MACjB,C;cAEAE,CAAAA,EAA+B;A,QAAuB,OAAjB,gBAAN,IAAM,CAAN,KAAM,C;MAAgB,C;cAErDC,CAAAA,EAAkC;A,QAAa,OAAP,MAAN,IAAM,CAAN,KAAM,C;MAAM,C;WAtClD;A,QAAA,iB;MAAA,C;iBAAA;A,QAAA,mC;MAAA,C;;iCAAA,I,CAAA,K;;;;;;;;;;;;;;;QAuD8B,uCAA0B,eAA1B,uB;;QAA1BC,CAAAA,EAAA;A,QAAA,iB;MAAsB,C;SAEtBC,CACIC,O,EACAT,KAFJQ,EAGE;A,QACE,OAAQ,IAAa,KAAM,WAAnB,C;MACZ,C;SAIk6JC,O,EAAkBT,K;;;QAFp7JU,CAAyBC,OAAzBD,EAA4D;A,QAA2C,OAA7B,yBAAM,OAAQ,KAAd,C;MAA4B,C;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare interface AttoSignerJs {
|
|
4
|
+
readonly publicKey: AttoPublicKey;
|
|
5
|
+
signHash(hash: AttoHash): Promise<AttoSignature>;
|
|
6
|
+
signBlock(block: AttoBlock): Promise<AttoSignature>;
|
|
7
|
+
signVote(vote: AttoVote): Promise<AttoSignature>;
|
|
8
|
+
signChallenge(challenge: AttoChallenge, timestamp: string): Promise<AttoSignature>;
|
|
9
|
+
checkPublicKey(publicKey: AttoPublicKey): Promise<void>;
|
|
10
|
+
readonly __doNotUseOrImplementIt: {
|
|
11
|
+
readonly "cash.atto.commons.AttoSignerJs": unique symbol;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function toSignerJs(_this_: AttoPrivateKey): AttoSignerJs;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { toSignerJsp358scga3843 as toSignerJs } from './AttoSigner.js.mjs';
|
|
2
|
+
//region block: imports
|
|
3
|
+
//endregion
|
|
4
|
+
//region block: pre-declaration
|
|
5
|
+
//endregion
|
|
6
|
+
//region block: exports
|
|
7
|
+
export {
|
|
8
|
+
toSignerJs as toSignerJs,
|
|
9
|
+
};
|
|
10
|
+
//endregion
|
|
11
|
+
|
|
12
|
+
//# sourceMappingURL=AttoSigner.js.export.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
import {
|
|
2
|
+
generateKeyPairFromSeed as generateKeyPairFromSeed,
|
|
3
|
+
sign as sign,
|
|
4
|
+
} from '@stablelib/ed25519';
|
|
5
|
+
import {
|
|
6
|
+
initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
|
|
7
|
+
initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
|
|
8
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
9
|
+
} from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
10
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
11
|
+
import {
|
|
12
|
+
toSignerroyf4kwojbn as toSigner,
|
|
13
|
+
sign2skh7ycyjivdv as sign_0,
|
|
14
|
+
sign2zvjl71mlgauz as sign_1,
|
|
15
|
+
sign1j9jdjlbce3by as sign_2,
|
|
16
|
+
checkPublicKey2vb3w1hlxewo6 as checkPublicKey,
|
|
17
|
+
AttoSigner1s0b1owma3lqw as AttoSigner,
|
|
18
|
+
} from './AttoSigner.mjs';
|
|
19
|
+
import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
|
|
20
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
21
|
+
import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
22
|
+
import {
|
|
23
|
+
CoroutineScopefcb5f5dwqcas as CoroutineScope,
|
|
24
|
+
GlobalScope_instance1sfulufhd2ijt as GlobalScope_instance,
|
|
25
|
+
} from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
26
|
+
import { isInterface3d6p8outrmvmk as isInterface } from '../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
|
|
27
|
+
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
28
|
+
import { Companion_getInstance3vjikuur3h0k4 as Companion_getInstance } from '../../../../Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs';
|
|
29
|
+
import { promise1ky6tawqaxbt4 as promise } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs';
|
|
30
|
+
import { toPublicKey1cur233ok82jt as toPublicKey } from './AttoPublicKey.js.mjs';
|
|
31
|
+
import {
|
|
32
|
+
toUint8Array1omfedyjm9v5o as toUint8Array,
|
|
33
|
+
toByteArray3f5i5urnfv0wu as toByteArray,
|
|
34
|
+
} from './Extensions.mjs';
|
|
35
|
+
import { AttoSignaturef1rb35b89r5k as AttoSignature } from './AttoSignature.mjs';
|
|
36
|
+
import { protoOf180f3jzyo7rfj as protoOf } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
37
|
+
//region block: imports
|
|
38
|
+
//endregion
|
|
39
|
+
//region block: pre-declaration
|
|
40
|
+
//endregion
|
|
41
|
+
var AttoSignerJsClass;
|
|
42
|
+
function AttoSignerJs() {
|
|
43
|
+
if (AttoSignerJsClass === VOID) {
|
|
44
|
+
class $ {}
|
|
45
|
+
initMetadataForInterface($, 'AttoSignerJs');
|
|
46
|
+
AttoSignerJsClass = $;
|
|
47
|
+
}
|
|
48
|
+
return AttoSignerJsClass;
|
|
49
|
+
}
|
|
50
|
+
function toSignerJs(_this__u8e3s4) {
|
|
51
|
+
var signer = toSigner(_this__u8e3s4);
|
|
52
|
+
return new (AttoSignerJsImpl())(signer);
|
|
53
|
+
}
|
|
54
|
+
var AttoSignerJsImpl$signHash$slambdaClass;
|
|
55
|
+
function AttoSignerJsImpl$signHash$slambda() {
|
|
56
|
+
if (AttoSignerJsImpl$signHash$slambdaClass === VOID) {
|
|
57
|
+
class $ extends CoroutineImpl() {
|
|
58
|
+
constructor(this$0, $hash, resultContinuation, $box) {
|
|
59
|
+
if ($box === VOID)
|
|
60
|
+
$box = {};
|
|
61
|
+
$box.l35_1 = this$0;
|
|
62
|
+
$box.m35_1 = $hash;
|
|
63
|
+
super(resultContinuation, $box);
|
|
64
|
+
}
|
|
65
|
+
o35($this$promise, $completion) {
|
|
66
|
+
var tmp = this.p35($this$promise, $completion);
|
|
67
|
+
tmp.cc_1 = Unit_instance;
|
|
68
|
+
tmp.dc_1 = null;
|
|
69
|
+
return tmp.ic();
|
|
70
|
+
}
|
|
71
|
+
kd(p1, $completion) {
|
|
72
|
+
return this.o35((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
73
|
+
}
|
|
74
|
+
ic() {
|
|
75
|
+
var suspendResult = this.cc_1;
|
|
76
|
+
$sm: do
|
|
77
|
+
try {
|
|
78
|
+
var tmp = this.ac_1;
|
|
79
|
+
switch (tmp) {
|
|
80
|
+
case 0:
|
|
81
|
+
this.bc_1 = 2;
|
|
82
|
+
this.ac_1 = 1;
|
|
83
|
+
suspendResult = this.l35_1.q35_1.h33(this.m35_1, this);
|
|
84
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
85
|
+
return suspendResult;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
continue $sm;
|
|
89
|
+
case 1:
|
|
90
|
+
return suspendResult;
|
|
91
|
+
case 2:
|
|
92
|
+
throw this.dc_1;
|
|
93
|
+
}
|
|
94
|
+
} catch ($p) {
|
|
95
|
+
var e = $p;
|
|
96
|
+
if (this.bc_1 === 2) {
|
|
97
|
+
throw e;
|
|
98
|
+
} else {
|
|
99
|
+
this.ac_1 = this.bc_1;
|
|
100
|
+
this.dc_1 = e;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
while (true);
|
|
104
|
+
}
|
|
105
|
+
p35($this$promise, completion) {
|
|
106
|
+
var i = new (AttoSignerJsImpl$signHash$slambda())(this.l35_1, this.m35_1, completion);
|
|
107
|
+
i.n35_1 = $this$promise;
|
|
108
|
+
return i;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
112
|
+
AttoSignerJsImpl$signHash$slambdaClass = $;
|
|
113
|
+
}
|
|
114
|
+
return AttoSignerJsImpl$signHash$slambdaClass;
|
|
115
|
+
}
|
|
116
|
+
function AttoSignerJsImpl$signHash$slambda_0(this$0, $hash, resultContinuation) {
|
|
117
|
+
var i = new (AttoSignerJsImpl$signHash$slambda())(this$0, $hash, resultContinuation);
|
|
118
|
+
var l = function ($this$promise, $completion) {
|
|
119
|
+
return i.o35($this$promise, $completion);
|
|
120
|
+
};
|
|
121
|
+
l.$arity = 1;
|
|
122
|
+
return l;
|
|
123
|
+
}
|
|
124
|
+
var AttoSignerJsImpl$signBlock$slambdaClass;
|
|
125
|
+
function AttoSignerJsImpl$signBlock$slambda() {
|
|
126
|
+
if (AttoSignerJsImpl$signBlock$slambdaClass === VOID) {
|
|
127
|
+
class $ extends CoroutineImpl() {
|
|
128
|
+
constructor(this$0, $block, resultContinuation, $box) {
|
|
129
|
+
if ($box === VOID)
|
|
130
|
+
$box = {};
|
|
131
|
+
$box.a36_1 = this$0;
|
|
132
|
+
$box.b36_1 = $block;
|
|
133
|
+
super(resultContinuation, $box);
|
|
134
|
+
}
|
|
135
|
+
o35($this$promise, $completion) {
|
|
136
|
+
var tmp = this.p35($this$promise, $completion);
|
|
137
|
+
tmp.cc_1 = Unit_instance;
|
|
138
|
+
tmp.dc_1 = null;
|
|
139
|
+
return tmp.ic();
|
|
140
|
+
}
|
|
141
|
+
kd(p1, $completion) {
|
|
142
|
+
return this.o35((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
143
|
+
}
|
|
144
|
+
ic() {
|
|
145
|
+
var suspendResult = this.cc_1;
|
|
146
|
+
$sm: do
|
|
147
|
+
try {
|
|
148
|
+
var tmp = this.ac_1;
|
|
149
|
+
switch (tmp) {
|
|
150
|
+
case 0:
|
|
151
|
+
this.bc_1 = 2;
|
|
152
|
+
this.ac_1 = 1;
|
|
153
|
+
suspendResult = this.a36_1.q35_1.t33(this.b36_1, this);
|
|
154
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
155
|
+
return suspendResult;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
continue $sm;
|
|
159
|
+
case 1:
|
|
160
|
+
return suspendResult;
|
|
161
|
+
case 2:
|
|
162
|
+
throw this.dc_1;
|
|
163
|
+
}
|
|
164
|
+
} catch ($p) {
|
|
165
|
+
var e = $p;
|
|
166
|
+
if (this.bc_1 === 2) {
|
|
167
|
+
throw e;
|
|
168
|
+
} else {
|
|
169
|
+
this.ac_1 = this.bc_1;
|
|
170
|
+
this.dc_1 = e;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
while (true);
|
|
174
|
+
}
|
|
175
|
+
p35($this$promise, completion) {
|
|
176
|
+
var i = new (AttoSignerJsImpl$signBlock$slambda())(this.a36_1, this.b36_1, completion);
|
|
177
|
+
i.c36_1 = $this$promise;
|
|
178
|
+
return i;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
182
|
+
AttoSignerJsImpl$signBlock$slambdaClass = $;
|
|
183
|
+
}
|
|
184
|
+
return AttoSignerJsImpl$signBlock$slambdaClass;
|
|
185
|
+
}
|
|
186
|
+
function AttoSignerJsImpl$signBlock$slambda_0(this$0, $block, resultContinuation) {
|
|
187
|
+
var i = new (AttoSignerJsImpl$signBlock$slambda())(this$0, $block, resultContinuation);
|
|
188
|
+
var l = function ($this$promise, $completion) {
|
|
189
|
+
return i.o35($this$promise, $completion);
|
|
190
|
+
};
|
|
191
|
+
l.$arity = 1;
|
|
192
|
+
return l;
|
|
193
|
+
}
|
|
194
|
+
var AttoSignerJsImpl$signVote$slambdaClass;
|
|
195
|
+
function AttoSignerJsImpl$signVote$slambda() {
|
|
196
|
+
if (AttoSignerJsImpl$signVote$slambdaClass === VOID) {
|
|
197
|
+
class $ extends CoroutineImpl() {
|
|
198
|
+
constructor(this$0, $vote, resultContinuation, $box) {
|
|
199
|
+
if ($box === VOID)
|
|
200
|
+
$box = {};
|
|
201
|
+
$box.l36_1 = this$0;
|
|
202
|
+
$box.m36_1 = $vote;
|
|
203
|
+
super(resultContinuation, $box);
|
|
204
|
+
}
|
|
205
|
+
o35($this$promise, $completion) {
|
|
206
|
+
var tmp = this.p35($this$promise, $completion);
|
|
207
|
+
tmp.cc_1 = Unit_instance;
|
|
208
|
+
tmp.dc_1 = null;
|
|
209
|
+
return tmp.ic();
|
|
210
|
+
}
|
|
211
|
+
kd(p1, $completion) {
|
|
212
|
+
return this.o35((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
213
|
+
}
|
|
214
|
+
ic() {
|
|
215
|
+
var suspendResult = this.cc_1;
|
|
216
|
+
$sm: do
|
|
217
|
+
try {
|
|
218
|
+
var tmp = this.ac_1;
|
|
219
|
+
switch (tmp) {
|
|
220
|
+
case 0:
|
|
221
|
+
this.bc_1 = 2;
|
|
222
|
+
this.ac_1 = 1;
|
|
223
|
+
suspendResult = this.l36_1.q35_1.u33(this.m36_1, this);
|
|
224
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
225
|
+
return suspendResult;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
continue $sm;
|
|
229
|
+
case 1:
|
|
230
|
+
return suspendResult;
|
|
231
|
+
case 2:
|
|
232
|
+
throw this.dc_1;
|
|
233
|
+
}
|
|
234
|
+
} catch ($p) {
|
|
235
|
+
var e = $p;
|
|
236
|
+
if (this.bc_1 === 2) {
|
|
237
|
+
throw e;
|
|
238
|
+
} else {
|
|
239
|
+
this.ac_1 = this.bc_1;
|
|
240
|
+
this.dc_1 = e;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
while (true);
|
|
244
|
+
}
|
|
245
|
+
p35($this$promise, completion) {
|
|
246
|
+
var i = new (AttoSignerJsImpl$signVote$slambda())(this.l36_1, this.m36_1, completion);
|
|
247
|
+
i.n36_1 = $this$promise;
|
|
248
|
+
return i;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
252
|
+
AttoSignerJsImpl$signVote$slambdaClass = $;
|
|
253
|
+
}
|
|
254
|
+
return AttoSignerJsImpl$signVote$slambdaClass;
|
|
255
|
+
}
|
|
256
|
+
function AttoSignerJsImpl$signVote$slambda_0(this$0, $vote, resultContinuation) {
|
|
257
|
+
var i = new (AttoSignerJsImpl$signVote$slambda())(this$0, $vote, resultContinuation);
|
|
258
|
+
var l = function ($this$promise, $completion) {
|
|
259
|
+
return i.o35($this$promise, $completion);
|
|
260
|
+
};
|
|
261
|
+
l.$arity = 1;
|
|
262
|
+
return l;
|
|
263
|
+
}
|
|
264
|
+
var AttoSignerJsImpl$signChallenge$slambdaClass;
|
|
265
|
+
function AttoSignerJsImpl$signChallenge$slambda() {
|
|
266
|
+
if (AttoSignerJsImpl$signChallenge$slambdaClass === VOID) {
|
|
267
|
+
class $ extends CoroutineImpl() {
|
|
268
|
+
constructor(this$0, $challenge, $timestamp, resultContinuation, $box) {
|
|
269
|
+
if ($box === VOID)
|
|
270
|
+
$box = {};
|
|
271
|
+
$box.w36_1 = this$0;
|
|
272
|
+
$box.x36_1 = $challenge;
|
|
273
|
+
$box.y36_1 = $timestamp;
|
|
274
|
+
super(resultContinuation, $box);
|
|
275
|
+
}
|
|
276
|
+
o35($this$promise, $completion) {
|
|
277
|
+
var tmp = this.p35($this$promise, $completion);
|
|
278
|
+
tmp.cc_1 = Unit_instance;
|
|
279
|
+
tmp.dc_1 = null;
|
|
280
|
+
return tmp.ic();
|
|
281
|
+
}
|
|
282
|
+
kd(p1, $completion) {
|
|
283
|
+
return this.o35((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
284
|
+
}
|
|
285
|
+
ic() {
|
|
286
|
+
var suspendResult = this.cc_1;
|
|
287
|
+
$sm: do
|
|
288
|
+
try {
|
|
289
|
+
var tmp = this.ac_1;
|
|
290
|
+
switch (tmp) {
|
|
291
|
+
case 0:
|
|
292
|
+
this.bc_1 = 2;
|
|
293
|
+
this.ac_1 = 1;
|
|
294
|
+
suspendResult = this.w36_1.q35_1.v33(this.x36_1, Companion_getInstance().h1v(this.y36_1), this);
|
|
295
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
296
|
+
return suspendResult;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
continue $sm;
|
|
300
|
+
case 1:
|
|
301
|
+
return suspendResult;
|
|
302
|
+
case 2:
|
|
303
|
+
throw this.dc_1;
|
|
304
|
+
}
|
|
305
|
+
} catch ($p) {
|
|
306
|
+
var e = $p;
|
|
307
|
+
if (this.bc_1 === 2) {
|
|
308
|
+
throw e;
|
|
309
|
+
} else {
|
|
310
|
+
this.ac_1 = this.bc_1;
|
|
311
|
+
this.dc_1 = e;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
while (true);
|
|
315
|
+
}
|
|
316
|
+
p35($this$promise, completion) {
|
|
317
|
+
var i = new (AttoSignerJsImpl$signChallenge$slambda())(this.w36_1, this.x36_1, this.y36_1, completion);
|
|
318
|
+
i.z36_1 = $this$promise;
|
|
319
|
+
return i;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
323
|
+
AttoSignerJsImpl$signChallenge$slambdaClass = $;
|
|
324
|
+
}
|
|
325
|
+
return AttoSignerJsImpl$signChallenge$slambdaClass;
|
|
326
|
+
}
|
|
327
|
+
function AttoSignerJsImpl$signChallenge$slambda_0(this$0, $challenge, $timestamp, resultContinuation) {
|
|
328
|
+
var i = new (AttoSignerJsImpl$signChallenge$slambda())(this$0, $challenge, $timestamp, resultContinuation);
|
|
329
|
+
var l = function ($this$promise, $completion) {
|
|
330
|
+
return i.o35($this$promise, $completion);
|
|
331
|
+
};
|
|
332
|
+
l.$arity = 1;
|
|
333
|
+
return l;
|
|
334
|
+
}
|
|
335
|
+
var AttoSignerJsImpl$checkPublicKey$slambdaClass;
|
|
336
|
+
function AttoSignerJsImpl$checkPublicKey$slambda() {
|
|
337
|
+
if (AttoSignerJsImpl$checkPublicKey$slambdaClass === VOID) {
|
|
338
|
+
class $ extends CoroutineImpl() {
|
|
339
|
+
constructor(this$0, $publicKey, resultContinuation, $box) {
|
|
340
|
+
if ($box === VOID)
|
|
341
|
+
$box = {};
|
|
342
|
+
$box.i37_1 = this$0;
|
|
343
|
+
$box.j37_1 = $publicKey;
|
|
344
|
+
super(resultContinuation, $box);
|
|
345
|
+
}
|
|
346
|
+
l37($this$promise, $completion) {
|
|
347
|
+
var tmp = this.p35($this$promise, $completion);
|
|
348
|
+
tmp.cc_1 = Unit_instance;
|
|
349
|
+
tmp.dc_1 = null;
|
|
350
|
+
return tmp.ic();
|
|
351
|
+
}
|
|
352
|
+
kd(p1, $completion) {
|
|
353
|
+
return this.l37((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
354
|
+
}
|
|
355
|
+
ic() {
|
|
356
|
+
var suspendResult = this.cc_1;
|
|
357
|
+
$sm: do
|
|
358
|
+
try {
|
|
359
|
+
var tmp = this.ac_1;
|
|
360
|
+
switch (tmp) {
|
|
361
|
+
case 0:
|
|
362
|
+
this.bc_1 = 2;
|
|
363
|
+
this.ac_1 = 1;
|
|
364
|
+
suspendResult = this.i37_1.q35_1.g33(this.j37_1, this);
|
|
365
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
366
|
+
return suspendResult;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
continue $sm;
|
|
370
|
+
case 1:
|
|
371
|
+
return Unit_instance;
|
|
372
|
+
case 2:
|
|
373
|
+
throw this.dc_1;
|
|
374
|
+
}
|
|
375
|
+
} catch ($p) {
|
|
376
|
+
var e = $p;
|
|
377
|
+
if (this.bc_1 === 2) {
|
|
378
|
+
throw e;
|
|
379
|
+
} else {
|
|
380
|
+
this.ac_1 = this.bc_1;
|
|
381
|
+
this.dc_1 = e;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
while (true);
|
|
385
|
+
}
|
|
386
|
+
p35($this$promise, completion) {
|
|
387
|
+
var i = new (AttoSignerJsImpl$checkPublicKey$slambda())(this.i37_1, this.j37_1, completion);
|
|
388
|
+
i.k37_1 = $this$promise;
|
|
389
|
+
return i;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
393
|
+
AttoSignerJsImpl$checkPublicKey$slambdaClass = $;
|
|
394
|
+
}
|
|
395
|
+
return AttoSignerJsImpl$checkPublicKey$slambdaClass;
|
|
396
|
+
}
|
|
397
|
+
function AttoSignerJsImpl$checkPublicKey$slambda_0(this$0, $publicKey, resultContinuation) {
|
|
398
|
+
var i = new (AttoSignerJsImpl$checkPublicKey$slambda())(this$0, $publicKey, resultContinuation);
|
|
399
|
+
var l = function ($this$promise, $completion) {
|
|
400
|
+
return i.l37($this$promise, $completion);
|
|
401
|
+
};
|
|
402
|
+
l.$arity = 1;
|
|
403
|
+
return l;
|
|
404
|
+
}
|
|
405
|
+
var AttoSignerJsImplClass;
|
|
406
|
+
function AttoSignerJsImpl() {
|
|
407
|
+
if (AttoSignerJsImplClass === VOID) {
|
|
408
|
+
class $ {
|
|
409
|
+
constructor(signer) {
|
|
410
|
+
this.q35_1 = signer;
|
|
411
|
+
this.r35_1 = this.q35_1.q2v();
|
|
412
|
+
}
|
|
413
|
+
q2v() {
|
|
414
|
+
return this.r35_1;
|
|
415
|
+
}
|
|
416
|
+
signHash(hash) {
|
|
417
|
+
var tmp = GlobalScope_instance;
|
|
418
|
+
return promise(tmp, VOID, VOID, AttoSignerJsImpl$signHash$slambda_0(this, hash, null));
|
|
419
|
+
}
|
|
420
|
+
signBlock(block) {
|
|
421
|
+
var tmp = GlobalScope_instance;
|
|
422
|
+
return promise(tmp, VOID, VOID, AttoSignerJsImpl$signBlock$slambda_0(this, block, null));
|
|
423
|
+
}
|
|
424
|
+
signVote(vote) {
|
|
425
|
+
var tmp = GlobalScope_instance;
|
|
426
|
+
return promise(tmp, VOID, VOID, AttoSignerJsImpl$signVote$slambda_0(this, vote, null));
|
|
427
|
+
}
|
|
428
|
+
signChallenge(challenge, timestamp) {
|
|
429
|
+
var tmp = GlobalScope_instance;
|
|
430
|
+
return promise(tmp, VOID, VOID, AttoSignerJsImpl$signChallenge$slambda_0(this, challenge, timestamp, null));
|
|
431
|
+
}
|
|
432
|
+
checkPublicKey(publicKey) {
|
|
433
|
+
var tmp = GlobalScope_instance;
|
|
434
|
+
return promise(tmp, VOID, VOID, AttoSignerJsImpl$checkPublicKey$slambda_0(this, publicKey, null));
|
|
435
|
+
}
|
|
436
|
+
get publicKey() {
|
|
437
|
+
return this.q2v();
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
initMetadataForClass($, 'AttoSignerJsImpl', VOID, VOID, [AttoSignerJs()]);
|
|
441
|
+
AttoSignerJsImplClass = $;
|
|
442
|
+
}
|
|
443
|
+
return AttoSignerJsImplClass;
|
|
444
|
+
}
|
|
445
|
+
var InMemorySignerClass;
|
|
446
|
+
function InMemorySigner() {
|
|
447
|
+
if (InMemorySignerClass === VOID) {
|
|
448
|
+
class $ {
|
|
449
|
+
constructor(privateKey) {
|
|
450
|
+
this.m37_1 = privateKey;
|
|
451
|
+
this.n37_1 = toPublicKey(this.m37_1);
|
|
452
|
+
this.o37_1 = generateKeyPairFromSeed(toUint8Array(this.m37_1.value));
|
|
453
|
+
}
|
|
454
|
+
q2v() {
|
|
455
|
+
return this.n37_1;
|
|
456
|
+
}
|
|
457
|
+
h33(hash, $completion) {
|
|
458
|
+
var signature = sign(this.o37_1.secretKey, toUint8Array(hash.value));
|
|
459
|
+
return new (AttoSignature())(toByteArray(signature));
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
protoOf($).t33 = sign_0;
|
|
463
|
+
protoOf($).u33 = sign_1;
|
|
464
|
+
protoOf($).v33 = sign_2;
|
|
465
|
+
protoOf($).g33 = checkPublicKey;
|
|
466
|
+
initMetadataForClass($, 'InMemorySigner', VOID, VOID, [AttoSigner()], [1, 2]);
|
|
467
|
+
InMemorySignerClass = $;
|
|
468
|
+
}
|
|
469
|
+
return InMemorySignerClass;
|
|
470
|
+
}
|
|
471
|
+
//region block: exports
|
|
472
|
+
export {
|
|
473
|
+
InMemorySigner as InMemorySigner32umwc197yryh,
|
|
474
|
+
toSignerJs as toSignerJsp358scga3843,
|
|
475
|
+
};
|
|
476
|
+
//endregion
|
|
477
|
+
|
|
478
|
+
//# sourceMappingURL=AttoSigner.js.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-core/src/jsMain/kotlin/cash/atto/commons/AttoSigner.js.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["toSignerJs","<this>","signer","$hash","invoke","$completion","doResume","AttoSignerJsImpl$signHash$slambda","AttoSignerJsImpl$signHash$slambda$lambda","$block","AttoSignerJsImpl$signBlock$slambda","AttoSignerJsImpl$signBlock$slambda$lambda","$vote","AttoSignerJsImpl$signVote$slambda","AttoSignerJsImpl$signVote$slambda$lambda","$challenge","$timestamp","AttoSignerJsImpl$signChallenge$slambda","AttoSignerJsImpl$signChallenge$slambda$lambda","$publicKey","AttoSignerJsImpl$checkPublicKey$slambda","AttoSignerJsImpl$checkPublicKey$slambda$lambda","<get-publicKey>","signHash","hash","signBlock","block","signVote","vote","signChallenge","challenge","timestamp","checkPublicKey","publicKey","privateKey","sign","signature"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkDAA,CAEIC,aAFJD,EAE8C;A,MAC1CE,SAAa,uB;EACb,gCAAwB,MAAxB,C;AACJ,C;;;;;kBAnBI,M,EAAsBC,K;;;;;;;SAA8DC,CAAA,a,EAAAC,WAAAD,EAAE;A;;;;MAAgB,C;SApC1G,E,EAAAC,W;;;QAoCwFC,CAAAA,EAAA;A;;UAAA,I;;;;;;gCAAS,KAAP,KAAO,CAAP,KAAO,UAAK,KAAL,O;;;;;;;;;;;;;;;;;;;;;MAAW,C;UAApB,a,EAsC2K,U;;;;;;;;;;;4CAtC3KC,CAApF,M,EAAsBJ,K,oBAA8DI,E;;mBAAAC,CAAA,a,EAAAH,WAAAG,E;;G;;;C;;;;;kBAEpF,M,EAAuBC,M;;;;;;;SAAgEL,CAAA,a,EAAAC,WAAAD,EAAE;A;;;;MAAiB,C;SAtC9G,E,EAAAC,W;;;QAsC2FC,CAAAA,EAAA;A;;UAAA,I;;;;;;gCAAS,KAAP,KAAO,CAAP,KAAO,UAAK,KAAL,O;;;;;;;;;;;;;;;;;;;;;MAAY,C;UAArB,a,EAoCwK,U;;;;;;;;;;;6CApCxKI,CAAvF,M,EAAuBD,M,oBAAgEC,E;;mBAAAC,CAAA,a,EAAAN,WAAAM,E;;G;;;C;;;;;kBAEvF,M,EAAsBC,K;;;;;;;SAA8DR,CAAA,a,EAAAC,WAAAD,EAAE;A;;;;MAAgB,C;SAxC1G,E,EAAAC,W;;;QAwCwFC,CAAAA,EAAA;A;;UAAA,I;;;;;;gCAAS,KAAP,KAAO,CAAP,KAAO,UAAK,KAAL,O;;;;;;;;;;;;;;;;;;;;;MAAW,C;UAApB,a,EAkC2K,U;;;;;;;;;;;4CAlC3KO,CAApF,M,EAAsBD,K,oBAA8DC,E;;mBAAAC,CAAA,a,EAAAT,WAAAS,E;;G;;;C;;;;;kBAEpF,M,EACIC,U,EACAC,U;;;;;;;;SAC4CZ,CAAA,a,EAAAC,WAAAD,EAAE;A;;;;MAA+C,C;SA7CrG,E,EAAAC,W;;;QA6CoDC,CAAAA,EAAA;A;;UAAA,I;;;;;;gCAAS,KAAP,KAAO,CAAP,KAAO,UAAK,KAAL,EAAwB,iCAAM,KAAN,CAAxB,O;;;;;;;;;;;;;;;;;;;;;MAA0C,C;UAAnD,a,EA6B+M,U;;;;;;;;;;;iDA7B/MW,CAHhD,M,EACIF,U,EACAC,U,oBAC4CC,E;;mBAAAC,CAAA,a,EAAAb,WAAAa,E;;G;;;C;;;;;kBAEhD,M,EAA4BC,U;;;;;;;SAA+Df,CAAA,a,EAAAC,WAAAD,EAAE;A;;;;MAA+B,C;SA/ChI,E,EAAAC,W;;;QA+C+FC,CAAAA,EAAA;A;;UAAA,I;;;;;;gCAAS,KAAP,KAAO,CAAP,KAAO,UAAe,KAAf,O;;;;;;;gBAA0B,oB;;;;;;;;;;;;;;MAAA,C;UAAnC,a,EA2BoK,U;;;;;;;;;;;kDA3BpKc,CAA3F,M,EAA4BD,U,oBAA+DC,E;;mBAAAC,CAAA,a,EAAAhB,WAAAgB,E;;G;;;C;;;;;kBAjB3FnB,M;QAAA,mB;QAE+C,aAAP,IAAO,CAAP,KAAO,M;;SAA/CoB,CAAAA,EAAA;A,QAAA,iB;MAAoC,C;cAIpCC,CAAsBC,IAAtBD,EAAgE;A;QAAyC,OAA7B,yBAAQ,qDAAR,C;MAA4B,C;eAExGE,CAAuBC,KAAvBD,EAAmE;A;QAA0C,OAA9B,yBAAQ,uDAAR,C;MAA6B,C;cAE5GE,CAAsBC,IAAtBD,EAAgE;A;QAAyC,OAA7B,yBAAQ,qDAAR,C;MAA4B,C;mBAExGE,CACIC,S,EACAC,SAFJF,EAG4B;A;QAAwE,OAA5D,yBAAQ,0EAAR,C;MAA2D,C;oBAEnGG,CAA4BC,SAA5BD,EAAuE;A;QAAwD,OAA5C,yBAAQ,gEAAR,C;MAA2C,C;;;;;;;;;;;;;;kBAW9HE,U;QAAA,uB;QAE0D,yBAAX,IAAW,CAAX,KAAW,C;QAEpC,qCAAyC,aAAjB,IAAiB,CAAjB,KAAiB,CAAN,KAAM,CAAzC,C;;SAFtBZ,CAAAA,EAAA;A,QAAA,iB;MAA2C,C;SAI3Ca,CAAiCX,I,EAAjCnB,WAAA8B,EAAgE;A,YAC5DC,YAC4B,KACR,IADQ,CACR,KADQ,CACA,SADA,EAEC,aAAX,IAAW,CAAN,KAAM,CAFD,C;QAK5B,6BAA+B,YAAV,SAAU,CAA/B,C;MACJ,C;;;;;;;;;;;;;;;"}
|