chrome-devtools-mcp 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Debouncer.js +2 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Gzip.js +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Revealer.js +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Settings.js +106 -98
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Throttler.js +2 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/common/common.js +1 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/AidaClient.js +2 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/DispatchHttpRequestClient.js +15 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/GdpClient.js +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/InspectorFrontendHost.js +10 -13
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/UserMetrics.js +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/ByteUtilities.js +72 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/DevToolsLocale.js +64 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/NumberFormatter.js +67 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/collect-ui-strings.js +73 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/generate-locales-js.js +51 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/i18n.js +9 -60
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/i18nImpl.js +135 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/{common/QueryParamHandler.js → i18n/i18nTypes.js} +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/locales.js +14 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/time-utilities.js +148 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/DevToolsCDPConnection.js +138 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/InspectorBackend.js +19 -150
- package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/protocol_client.js +2 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/root/DevToolsContext.js +50 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/root/root.js +2 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CPUThrottlingManager.js +0 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSMatchedStyles.js +6 -7
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSModel.js +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSRule.js +14 -4
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ChildTargetManager.js +1 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/DebuggerModel.js +1 -16
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/IOModel.js +1 -4
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkManager.js +18 -9
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkRequest.js +0 -8
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/RemoteObject.js +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ServerSentEventsProtocol.js +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/Target.js +1 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/TargetManager.js +4 -5
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/sdk-meta.js +0 -30
- package/build/node_modules/chrome-devtools-frontend/front_end/foundation/Universe.js +30 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/foundation/foundation.js +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/generated/Deprecation.js +8 -14
- package/build/node_modules/chrome-devtools-frontend/front_end/generated/InspectorBackendCommands.js +9 -6
- package/build/node_modules/chrome-devtools-frontend/front_end/generated/SupportedCSSProperties.js +62 -8
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.js +86 -51
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/performance/AIQueries.js +46 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/CSSWorkspaceBinding.js +6 -5
- package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/CompilerScriptMapping.js +3 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/DebuggerWorkspaceBinding.js +17 -14
- package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/ResourceMapping.js +46 -14
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/AttributionReportingIssue.js +202 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/BounceTrackingIssue.js +57 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CheckFormsIssuesTrigger.js +31 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ClientHintIssue.js +76 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ContentSecurityPolicyIssue.js +140 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ContrastCheckTrigger.js +59 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CookieDeprecationMetadataIssue.js +64 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CookieIssue.js +513 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CorsIssue.js +251 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.js +112 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/DeprecationIssue.js +95 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ElementAccessibilityIssue.js +100 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/FederatedAuthRequestIssue.js +236 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.js +146 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/GenericIssue.js +197 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/HeavyAdIssue.js +57 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/Issue.js +147 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssueAggregator.js +309 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssueResolver.js +40 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssuesManager.js +416 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssuesManagerEvents.js +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/LowTextContrastIssue.js +53 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/MarkdownIssueDescription.js +104 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/MixedContentIssue.js +59 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/PartitioningBlobURLIssue.js +63 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/PropertyRuleIssue.js +63 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/QuirksModeIssue.js +53 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/RelatedIssue.js +70 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SRIMessageSignatureIssue.js +91 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SharedArrayBufferIssue.js +54 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SharedDictionaryIssue.js +297 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SourceFrameIssuesManager.js +81 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/StylesheetLoadingIssue.js +63 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/UnencodedDigestIssue.js +67 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCoopSandboxedIframeCannotNavigateToCoopPage.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameOrigin.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +18 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameSite.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepFrameResourceNeedsCoepHeader.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CompatibilityModeQuirks.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CookieAttributeValueExceedsMaxSize.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/LowTextContrast.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeRead.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeSet.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeNavigationContextDowngrade.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteInvalidSameParty.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorRead.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorSet.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnRead.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnSet.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteSamePartyCrossPartyContextSet.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +9 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +9 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeRead.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeSet.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInsecureContext.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterOsSourceHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterOsTriggerHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterSourceHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterTriggerHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arOsSourceIgnored.md +18 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arOsTriggerIgnored.md +19 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arSourceAndTriggerHeaders.md +9 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arSourceIgnored.md +13 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arTriggerIgnored.md +12 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arUntrustworthyReportingOrigin.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arWebAndOsHeaders.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/bounceTrackingMitigations.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieCrossSiteRedirectDowngrade.md +12 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeDomainNonAscii.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludePortMismatch.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeSchemeMismatch.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeThirdPartyPhaseoutRead.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeThirdPartyPhaseoutSet.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnDomainNonAscii.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnMetadataGrantRead.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnMetadataGrantSet.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnThirdPartyPhaseoutRead.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnThirdPartyPhaseoutSet.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsAllowCredentialsRequired.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsDisabledScheme.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsDisallowedByMode.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsHeaderDisallowedByPreflightResponse.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsInvalidHeaderValues.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsLocalNetworkAccessPermissionDenied.md +19 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsMethodDisallowedByPreflightResponse.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsNoCorsRedirectModeNotFollow.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsOriginMismatch.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPreflightResponseInvalid.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPrivateNetworkPermissionDenied.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsRedirectContainsCredentials.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsWildcardOriginNotAllowed.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspEvalViolation.md +9 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspInlineViolation.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspTrustedTypesPolicyViolation.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspTrustedTypesSinkViolation.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspURLViolation.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/deprecation.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsHttpNotFound.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsInvalidResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsNoResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestApprovalDeclined.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestCanceled.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataHttpNotFound.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataInvalidResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataNoResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorFetchingSignin.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorIdToken.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenHttpNotFound.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidRequest.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenNoResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestInvalidSigninResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestHttpNotFound.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestInvalidResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestNoResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestTooManyRequests.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoApiPermission.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotIframe.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/fetchingPartitionedBlobURL.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormAriaLabelledByToNonExistingId.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormAutocompleteAttributeEmptyError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormDuplicateIdForInputError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputWithNoLabelError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelForMatchesNonExistingIdError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelForNameError.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelHasNeitherForNorNestedInput.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericResponseWasBlockedByORB.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/heavyAd.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/mixedContent.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/navigatingPartitionedBlobURL.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/propertyRuleInvalidNameIssue.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/propertyRuleIssue.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedArrayBuffer.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorDictionaryLoadFailure.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorExpiredResponse.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInsufficientResources.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidMatchField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidTTLField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNavigationRequest.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNoMatchField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonIntegerTTLField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonListMatchDestField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonSecureContext.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringIdField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringInMatchDestList.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringMatchField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonTokenTypeField.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorRequestAborted.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorShuttingDown.md +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorTooLongIdField.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorUnsupportedType.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriInvalidSignatureHeader.md +14 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriInvalidSignatureInputHeader.md +15 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriMissingSignatureHeader.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriMissingSignatureInputHeader.md +7 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsIncorrectLength.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsNotByteSequence.md +14 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsParameterized.md +15 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentName.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentType.md +13 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidParameter.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderKeyIdLength.md +12 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingLabel.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueMissingComponents.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueNotInnerList.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedIntegrityMismatch.md +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedInvalidLength.md +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureExpired.md +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureMismatch.md +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/stylesheetLateImport.md +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/stylesheetRequestFailed.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +3 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestLength.md +12 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestType.md +17 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestMalformedDictionary.md +14 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestUnknownAlgorithm.md +15 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/issues_manager.js +35 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/Processor.js +4 -4
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/Styles.js +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/SamplesHandler.js +56 -6
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/ScriptsHandler.js +24 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/types/TraceEvents.js +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/IgnoreListManager.js +40 -47
- package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/WorkspaceImpl.js +5 -8
- package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/workspace-meta.js +34 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/LICENSE +202 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/i18n-impl.js +46 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/i18n.js +6 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/localized-string-set.js +122 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/LICENSE +33 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/intl-messageformat.js +5 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/index.js +13 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +1725 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/intl-messageformat.iife.js +1840 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/index.js +10 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/core.js +233 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/error.js +48 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/formatters.js +177 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/core.js +236 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/error.js +51 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/formatters.js +182 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/LICENSE +39 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/marked.js +2 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/bin/main.js +255 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/bin/marked.js +11 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.esm.js +2695 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.js +2233 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.umd.js +2719 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Lexer.js +453 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Parser.js +233 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Renderer.js +137 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Slugger.js +46 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/TextRenderer.js +34 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Tokenizer.js +683 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/defaults.js +27 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/helpers.js +240 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/marked.js +318 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/rules.js +243 -0
- package/build/node_modules/chrome-devtools-frontend/mcp/mcp.js +7 -0
- package/build/src/DevToolsConnectionAdapter.js +1 -2
- package/build/src/DevtoolsUtils.js +20 -0
- package/build/src/McpContext.js +9 -2
- package/build/src/McpResponse.js +38 -2
- package/build/src/PageCollector.js +131 -16
- package/build/src/features.js +14 -0
- package/build/src/formatters/consoleFormatter.js +3 -0
- package/build/src/issue-descriptions.js +35 -0
- package/build/src/main.js +6 -1
- package/build/src/third_party/THIRD_PARTY_NOTICES +3 -3
- package/build/src/third_party/index.js +726 -675
- package/build/src/tools/console.js +5 -0
- package/package.json +6 -6
- package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/NodeURL.js +0 -31
|
@@ -10202,13 +10202,13 @@ var hasRequiredBrowser;
|
|
|
10202
10202
|
function requireBrowser () {
|
|
10203
10203
|
if (hasRequiredBrowser) return browser.exports;
|
|
10204
10204
|
hasRequiredBrowser = 1;
|
|
10205
|
-
(function (module, exports) {
|
|
10206
|
-
exports.formatArgs = formatArgs;
|
|
10207
|
-
exports.save = save;
|
|
10208
|
-
exports.load = load;
|
|
10209
|
-
exports.useColors = useColors;
|
|
10210
|
-
exports.storage = localstorage();
|
|
10211
|
-
exports.destroy = (() => {
|
|
10205
|
+
(function (module, exports$1) {
|
|
10206
|
+
exports$1.formatArgs = formatArgs;
|
|
10207
|
+
exports$1.save = save;
|
|
10208
|
+
exports$1.load = load;
|
|
10209
|
+
exports$1.useColors = useColors;
|
|
10210
|
+
exports$1.storage = localstorage();
|
|
10211
|
+
exports$1.destroy = (() => {
|
|
10212
10212
|
let warned = false;
|
|
10213
10213
|
return () => {
|
|
10214
10214
|
if (!warned) {
|
|
@@ -10217,7 +10217,7 @@ function requireBrowser () {
|
|
|
10217
10217
|
}
|
|
10218
10218
|
};
|
|
10219
10219
|
})();
|
|
10220
|
-
exports.colors = [
|
|
10220
|
+
exports$1.colors = [
|
|
10221
10221
|
'#0000CC',
|
|
10222
10222
|
'#0000FF',
|
|
10223
10223
|
'#0033CC',
|
|
@@ -10333,13 +10333,13 @@ function requireBrowser () {
|
|
|
10333
10333
|
});
|
|
10334
10334
|
args.splice(lastC, 0, c);
|
|
10335
10335
|
}
|
|
10336
|
-
exports.log = console.debug || console.log || (() => {});
|
|
10336
|
+
exports$1.log = console.debug || console.log || (() => {});
|
|
10337
10337
|
function save(namespaces) {
|
|
10338
10338
|
try {
|
|
10339
10339
|
if (namespaces) {
|
|
10340
|
-
exports.storage.setItem('debug', namespaces);
|
|
10340
|
+
exports$1.storage.setItem('debug', namespaces);
|
|
10341
10341
|
} else {
|
|
10342
|
-
exports.storage.removeItem('debug');
|
|
10342
|
+
exports$1.storage.removeItem('debug');
|
|
10343
10343
|
}
|
|
10344
10344
|
} catch (error) {
|
|
10345
10345
|
}
|
|
@@ -10347,7 +10347,7 @@ function requireBrowser () {
|
|
|
10347
10347
|
function load() {
|
|
10348
10348
|
let r;
|
|
10349
10349
|
try {
|
|
10350
|
-
r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
|
|
10350
|
+
r = exports$1.storage.getItem('debug') || exports$1.storage.getItem('DEBUG') ;
|
|
10351
10351
|
} catch (error) {
|
|
10352
10352
|
}
|
|
10353
10353
|
if (!r && typeof process !== 'undefined' && 'env' in process) {
|
|
@@ -10361,7 +10361,7 @@ function requireBrowser () {
|
|
|
10361
10361
|
} catch (error) {
|
|
10362
10362
|
}
|
|
10363
10363
|
}
|
|
10364
|
-
module.exports = requireCommon$2()(exports);
|
|
10364
|
+
module.exports = requireCommon$2()(exports$1);
|
|
10365
10365
|
const {formatters} = module.exports;
|
|
10366
10366
|
formatters.j = function (v) {
|
|
10367
10367
|
try {
|
|
@@ -10511,24 +10511,24 @@ var hasRequiredNode;
|
|
|
10511
10511
|
function requireNode () {
|
|
10512
10512
|
if (hasRequiredNode) return node.exports;
|
|
10513
10513
|
hasRequiredNode = 1;
|
|
10514
|
-
(function (module, exports) {
|
|
10514
|
+
(function (module, exports$1) {
|
|
10515
10515
|
const tty = require$$1;
|
|
10516
10516
|
const util = require$$0$2;
|
|
10517
|
-
exports.init = init;
|
|
10518
|
-
exports.log = log;
|
|
10519
|
-
exports.formatArgs = formatArgs;
|
|
10520
|
-
exports.save = save;
|
|
10521
|
-
exports.load = load;
|
|
10522
|
-
exports.useColors = useColors;
|
|
10523
|
-
exports.destroy = util.deprecate(
|
|
10517
|
+
exports$1.init = init;
|
|
10518
|
+
exports$1.log = log;
|
|
10519
|
+
exports$1.formatArgs = formatArgs;
|
|
10520
|
+
exports$1.save = save;
|
|
10521
|
+
exports$1.load = load;
|
|
10522
|
+
exports$1.useColors = useColors;
|
|
10523
|
+
exports$1.destroy = util.deprecate(
|
|
10524
10524
|
() => {},
|
|
10525
10525
|
'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'
|
|
10526
10526
|
);
|
|
10527
|
-
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
10527
|
+
exports$1.colors = [6, 2, 3, 4, 5, 1];
|
|
10528
10528
|
try {
|
|
10529
10529
|
const supportsColor = requireSupportsColor();
|
|
10530
10530
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
10531
|
-
exports.colors = [
|
|
10531
|
+
exports$1.colors = [
|
|
10532
10532
|
20,
|
|
10533
10533
|
21,
|
|
10534
10534
|
26,
|
|
@@ -10609,7 +10609,7 @@ function requireNode () {
|
|
|
10609
10609
|
}
|
|
10610
10610
|
} catch (error) {
|
|
10611
10611
|
}
|
|
10612
|
-
exports.inspectOpts = Object.keys(process.env).filter(key => {
|
|
10612
|
+
exports$1.inspectOpts = Object.keys(process.env).filter(key => {
|
|
10613
10613
|
return /^debug_/i.test(key);
|
|
10614
10614
|
}).reduce((obj, key) => {
|
|
10615
10615
|
const prop = key
|
|
@@ -10632,8 +10632,8 @@ function requireNode () {
|
|
|
10632
10632
|
return obj;
|
|
10633
10633
|
}, {});
|
|
10634
10634
|
function useColors() {
|
|
10635
|
-
return 'colors' in exports.inspectOpts ?
|
|
10636
|
-
Boolean(exports.inspectOpts.colors) :
|
|
10635
|
+
return 'colors' in exports$1.inspectOpts ?
|
|
10636
|
+
Boolean(exports$1.inspectOpts.colors) :
|
|
10637
10637
|
tty.isatty(process.stderr.fd);
|
|
10638
10638
|
}
|
|
10639
10639
|
function formatArgs(args) {
|
|
@@ -10649,13 +10649,13 @@ function requireNode () {
|
|
|
10649
10649
|
}
|
|
10650
10650
|
}
|
|
10651
10651
|
function getDate() {
|
|
10652
|
-
if (exports.inspectOpts.hideDate) {
|
|
10652
|
+
if (exports$1.inspectOpts.hideDate) {
|
|
10653
10653
|
return '';
|
|
10654
10654
|
}
|
|
10655
10655
|
return new Date().toISOString() + ' ';
|
|
10656
10656
|
}
|
|
10657
10657
|
function log(...args) {
|
|
10658
|
-
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
|
|
10658
|
+
return process.stderr.write(util.formatWithOptions(exports$1.inspectOpts, ...args) + '\n');
|
|
10659
10659
|
}
|
|
10660
10660
|
function save(namespaces) {
|
|
10661
10661
|
if (namespaces) {
|
|
@@ -10669,12 +10669,12 @@ function requireNode () {
|
|
|
10669
10669
|
}
|
|
10670
10670
|
function init(debug) {
|
|
10671
10671
|
debug.inspectOpts = {};
|
|
10672
|
-
const keys = Object.keys(exports.inspectOpts);
|
|
10672
|
+
const keys = Object.keys(exports$1.inspectOpts);
|
|
10673
10673
|
for (let i = 0; i < keys.length; i++) {
|
|
10674
|
-
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
10674
|
+
debug.inspectOpts[keys[i]] = exports$1.inspectOpts[keys[i]];
|
|
10675
10675
|
}
|
|
10676
10676
|
}
|
|
10677
|
-
module.exports = requireCommon$2()(exports);
|
|
10677
|
+
module.exports = requireCommon$2()(exports$1);
|
|
10678
10678
|
const {formatters} = module.exports;
|
|
10679
10679
|
formatters.o = function (v) {
|
|
10680
10680
|
this.inspectOpts.colors = this.useColors;
|
|
@@ -15721,17 +15721,17 @@ var hasRequiredCode$4;
|
|
|
15721
15721
|
function requireCode$4 () {
|
|
15722
15722
|
if (hasRequiredCode$4) return code$4;
|
|
15723
15723
|
hasRequiredCode$4 = 1;
|
|
15724
|
-
(function (exports) {
|
|
15725
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15726
|
-
exports.regexpCode = exports.getEsmExportName = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = void 0;
|
|
15724
|
+
(function (exports$1) {
|
|
15725
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
15726
|
+
exports$1.regexpCode = exports$1.getEsmExportName = exports$1.getProperty = exports$1.safeStringify = exports$1.stringify = exports$1.strConcat = exports$1.addCodeArg = exports$1.str = exports$1._ = exports$1.nil = exports$1._Code = exports$1.Name = exports$1.IDENTIFIER = exports$1._CodeOrName = void 0;
|
|
15727
15727
|
class _CodeOrName {
|
|
15728
15728
|
}
|
|
15729
|
-
exports._CodeOrName = _CodeOrName;
|
|
15730
|
-
exports.IDENTIFIER = /^[a-z$_][a-z$_0-9]*$/i;
|
|
15729
|
+
exports$1._CodeOrName = _CodeOrName;
|
|
15730
|
+
exports$1.IDENTIFIER = /^[a-z$_][a-z$_0-9]*$/i;
|
|
15731
15731
|
class Name extends _CodeOrName {
|
|
15732
15732
|
constructor(s) {
|
|
15733
15733
|
super();
|
|
15734
|
-
if (!exports.IDENTIFIER.test(s))
|
|
15734
|
+
if (!exports$1.IDENTIFIER.test(s))
|
|
15735
15735
|
throw new Error("CodeGen: name must be a valid identifier");
|
|
15736
15736
|
this.str = s;
|
|
15737
15737
|
}
|
|
@@ -15745,7 +15745,7 @@ function requireCode$4 () {
|
|
|
15745
15745
|
return { [this.str]: 1 };
|
|
15746
15746
|
}
|
|
15747
15747
|
}
|
|
15748
|
-
exports.Name = Name;
|
|
15748
|
+
exports$1.Name = Name;
|
|
15749
15749
|
class _Code extends _CodeOrName {
|
|
15750
15750
|
constructor(code) {
|
|
15751
15751
|
super();
|
|
@@ -15773,8 +15773,8 @@ function requireCode$4 () {
|
|
|
15773
15773
|
}, {})));
|
|
15774
15774
|
}
|
|
15775
15775
|
}
|
|
15776
|
-
exports._Code = _Code;
|
|
15777
|
-
exports.nil = new _Code("");
|
|
15776
|
+
exports$1._Code = _Code;
|
|
15777
|
+
exports$1.nil = new _Code("");
|
|
15778
15778
|
function _(strs, ...args) {
|
|
15779
15779
|
const code = [strs[0]];
|
|
15780
15780
|
let i = 0;
|
|
@@ -15784,7 +15784,7 @@ function requireCode$4 () {
|
|
|
15784
15784
|
}
|
|
15785
15785
|
return new _Code(code);
|
|
15786
15786
|
}
|
|
15787
|
-
exports._ = _;
|
|
15787
|
+
exports$1._ = _;
|
|
15788
15788
|
const plus = new _Code("+");
|
|
15789
15789
|
function str(strs, ...args) {
|
|
15790
15790
|
const expr = [safeStringify(strs[0])];
|
|
@@ -15797,7 +15797,7 @@ function requireCode$4 () {
|
|
|
15797
15797
|
optimize(expr);
|
|
15798
15798
|
return new _Code(expr);
|
|
15799
15799
|
}
|
|
15800
|
-
exports.str = str;
|
|
15800
|
+
exports$1.str = str;
|
|
15801
15801
|
function addCodeArg(code, arg) {
|
|
15802
15802
|
if (arg instanceof _Code)
|
|
15803
15803
|
code.push(...arg._items);
|
|
@@ -15806,7 +15806,7 @@ function requireCode$4 () {
|
|
|
15806
15806
|
else
|
|
15807
15807
|
code.push(interpolate(arg));
|
|
15808
15808
|
}
|
|
15809
|
-
exports.addCodeArg = addCodeArg;
|
|
15809
|
+
exports$1.addCodeArg = addCodeArg;
|
|
15810
15810
|
function optimize(expr) {
|
|
15811
15811
|
let i = 1;
|
|
15812
15812
|
while (i < expr.length - 1) {
|
|
@@ -15842,7 +15842,7 @@ function requireCode$4 () {
|
|
|
15842
15842
|
function strConcat(c1, c2) {
|
|
15843
15843
|
return c2.emptyStr() ? c1 : c1.emptyStr() ? c2 : str `${c1}${c2}`;
|
|
15844
15844
|
}
|
|
15845
|
-
exports.strConcat = strConcat;
|
|
15845
|
+
exports$1.strConcat = strConcat;
|
|
15846
15846
|
function interpolate(x) {
|
|
15847
15847
|
return typeof x == "number" || typeof x == "boolean" || x === null
|
|
15848
15848
|
? x
|
|
@@ -15851,28 +15851,28 @@ function requireCode$4 () {
|
|
|
15851
15851
|
function stringify(x) {
|
|
15852
15852
|
return new _Code(safeStringify(x));
|
|
15853
15853
|
}
|
|
15854
|
-
exports.stringify = stringify;
|
|
15854
|
+
exports$1.stringify = stringify;
|
|
15855
15855
|
function safeStringify(x) {
|
|
15856
15856
|
return JSON.stringify(x)
|
|
15857
15857
|
.replace(/\u2028/g, "\\u2028")
|
|
15858
15858
|
.replace(/\u2029/g, "\\u2029");
|
|
15859
15859
|
}
|
|
15860
|
-
exports.safeStringify = safeStringify;
|
|
15860
|
+
exports$1.safeStringify = safeStringify;
|
|
15861
15861
|
function getProperty(key) {
|
|
15862
|
-
return typeof key == "string" && exports.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _ `[${key}]`;
|
|
15862
|
+
return typeof key == "string" && exports$1.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _ `[${key}]`;
|
|
15863
15863
|
}
|
|
15864
|
-
exports.getProperty = getProperty;
|
|
15864
|
+
exports$1.getProperty = getProperty;
|
|
15865
15865
|
function getEsmExportName(key) {
|
|
15866
|
-
if (typeof key == "string" && exports.IDENTIFIER.test(key)) {
|
|
15866
|
+
if (typeof key == "string" && exports$1.IDENTIFIER.test(key)) {
|
|
15867
15867
|
return new _Code(`${key}`);
|
|
15868
15868
|
}
|
|
15869
15869
|
throw new Error(`CodeGen: invalid export name: ${key}, use explicit $id name mapping`);
|
|
15870
15870
|
}
|
|
15871
|
-
exports.getEsmExportName = getEsmExportName;
|
|
15871
|
+
exports$1.getEsmExportName = getEsmExportName;
|
|
15872
15872
|
function regexpCode(rx) {
|
|
15873
15873
|
return new _Code(rx.toString());
|
|
15874
15874
|
}
|
|
15875
|
-
exports.regexpCode = regexpCode;
|
|
15875
|
+
exports$1.regexpCode = regexpCode;
|
|
15876
15876
|
} (code$4));
|
|
15877
15877
|
return code$4;
|
|
15878
15878
|
}
|
|
@@ -15884,9 +15884,9 @@ var hasRequiredScope$2;
|
|
|
15884
15884
|
function requireScope$2 () {
|
|
15885
15885
|
if (hasRequiredScope$2) return scope$2;
|
|
15886
15886
|
hasRequiredScope$2 = 1;
|
|
15887
|
-
(function (exports) {
|
|
15888
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15889
|
-
exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = void 0;
|
|
15887
|
+
(function (exports$1) {
|
|
15888
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
15889
|
+
exports$1.ValueScope = exports$1.ValueScopeName = exports$1.Scope = exports$1.varKinds = exports$1.UsedValueState = void 0;
|
|
15890
15890
|
const code_1 = requireCode$4();
|
|
15891
15891
|
class ValueError extends Error {
|
|
15892
15892
|
constructor(name) {
|
|
@@ -15898,8 +15898,8 @@ function requireScope$2 () {
|
|
|
15898
15898
|
(function (UsedValueState) {
|
|
15899
15899
|
UsedValueState[UsedValueState["Started"] = 0] = "Started";
|
|
15900
15900
|
UsedValueState[UsedValueState["Completed"] = 1] = "Completed";
|
|
15901
|
-
})(UsedValueState || (exports.UsedValueState = UsedValueState = {}));
|
|
15902
|
-
exports.varKinds = {
|
|
15901
|
+
})(UsedValueState || (exports$1.UsedValueState = UsedValueState = {}));
|
|
15902
|
+
exports$1.varKinds = {
|
|
15903
15903
|
const: new code_1.Name("const"),
|
|
15904
15904
|
let: new code_1.Name("let"),
|
|
15905
15905
|
var: new code_1.Name("var"),
|
|
@@ -15928,7 +15928,7 @@ function requireScope$2 () {
|
|
|
15928
15928
|
return (this._names[prefix] = { prefix, index: 0 });
|
|
15929
15929
|
}
|
|
15930
15930
|
}
|
|
15931
|
-
exports.Scope = Scope;
|
|
15931
|
+
exports$1.Scope = Scope;
|
|
15932
15932
|
class ValueScopeName extends code_1.Name {
|
|
15933
15933
|
constructor(prefix, nameStr) {
|
|
15934
15934
|
super(nameStr);
|
|
@@ -15939,7 +15939,7 @@ function requireScope$2 () {
|
|
|
15939
15939
|
this.scopePath = (0, code_1._) `.${new code_1.Name(property)}[${itemIndex}]`;
|
|
15940
15940
|
}
|
|
15941
15941
|
}
|
|
15942
|
-
exports.ValueScopeName = ValueScopeName;
|
|
15942
|
+
exports$1.ValueScopeName = ValueScopeName;
|
|
15943
15943
|
const line = (0, code_1._) `\n`;
|
|
15944
15944
|
class ValueScope extends Scope {
|
|
15945
15945
|
constructor(opts) {
|
|
@@ -16010,7 +16010,7 @@ function requireScope$2 () {
|
|
|
16010
16010
|
nameSet.set(name, UsedValueState.Started);
|
|
16011
16011
|
let c = valueCode(name);
|
|
16012
16012
|
if (c) {
|
|
16013
|
-
const def = this.opts.es5 ? exports.varKinds.var : exports.varKinds.const;
|
|
16013
|
+
const def = this.opts.es5 ? exports$1.varKinds.var : exports$1.varKinds.const;
|
|
16014
16014
|
code = (0, code_1._) `${code}${def} ${name} = ${c};${this.opts._n}`;
|
|
16015
16015
|
}
|
|
16016
16016
|
else if ((c = getCode === null || getCode === void 0 ? void 0 : getCode(name))) {
|
|
@@ -16025,7 +16025,7 @@ function requireScope$2 () {
|
|
|
16025
16025
|
return code;
|
|
16026
16026
|
}
|
|
16027
16027
|
}
|
|
16028
|
-
exports.ValueScope = ValueScope;
|
|
16028
|
+
exports$1.ValueScope = ValueScope;
|
|
16029
16029
|
} (scope$2));
|
|
16030
16030
|
return scope$2;
|
|
16031
16031
|
}
|
|
@@ -16035,26 +16035,26 @@ var hasRequiredCodegen$1;
|
|
|
16035
16035
|
function requireCodegen$1 () {
|
|
16036
16036
|
if (hasRequiredCodegen$1) return codegen$1;
|
|
16037
16037
|
hasRequiredCodegen$1 = 1;
|
|
16038
|
-
(function (exports) {
|
|
16039
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16040
|
-
exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = void 0;
|
|
16038
|
+
(function (exports$1) {
|
|
16039
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
16040
|
+
exports$1.or = exports$1.and = exports$1.not = exports$1.CodeGen = exports$1.operators = exports$1.varKinds = exports$1.ValueScopeName = exports$1.ValueScope = exports$1.Scope = exports$1.Name = exports$1.regexpCode = exports$1.stringify = exports$1.getProperty = exports$1.nil = exports$1.strConcat = exports$1.str = exports$1._ = void 0;
|
|
16041
16041
|
const code_1 = requireCode$4();
|
|
16042
16042
|
const scope_1 = requireScope$2();
|
|
16043
16043
|
var code_2 = requireCode$4();
|
|
16044
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return code_2._; } });
|
|
16045
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return code_2.str; } });
|
|
16046
|
-
Object.defineProperty(exports, "strConcat", { enumerable: true, get: function () { return code_2.strConcat; } });
|
|
16047
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return code_2.nil; } });
|
|
16048
|
-
Object.defineProperty(exports, "getProperty", { enumerable: true, get: function () { return code_2.getProperty; } });
|
|
16049
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return code_2.stringify; } });
|
|
16050
|
-
Object.defineProperty(exports, "regexpCode", { enumerable: true, get: function () { return code_2.regexpCode; } });
|
|
16051
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return code_2.Name; } });
|
|
16044
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return code_2._; } });
|
|
16045
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return code_2.str; } });
|
|
16046
|
+
Object.defineProperty(exports$1, "strConcat", { enumerable: true, get: function () { return code_2.strConcat; } });
|
|
16047
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return code_2.nil; } });
|
|
16048
|
+
Object.defineProperty(exports$1, "getProperty", { enumerable: true, get: function () { return code_2.getProperty; } });
|
|
16049
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return code_2.stringify; } });
|
|
16050
|
+
Object.defineProperty(exports$1, "regexpCode", { enumerable: true, get: function () { return code_2.regexpCode; } });
|
|
16051
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return code_2.Name; } });
|
|
16052
16052
|
var scope_2 = requireScope$2();
|
|
16053
|
-
Object.defineProperty(exports, "Scope", { enumerable: true, get: function () { return scope_2.Scope; } });
|
|
16054
|
-
Object.defineProperty(exports, "ValueScope", { enumerable: true, get: function () { return scope_2.ValueScope; } });
|
|
16055
|
-
Object.defineProperty(exports, "ValueScopeName", { enumerable: true, get: function () { return scope_2.ValueScopeName; } });
|
|
16056
|
-
Object.defineProperty(exports, "varKinds", { enumerable: true, get: function () { return scope_2.varKinds; } });
|
|
16057
|
-
exports.operators = {
|
|
16053
|
+
Object.defineProperty(exports$1, "Scope", { enumerable: true, get: function () { return scope_2.Scope; } });
|
|
16054
|
+
Object.defineProperty(exports$1, "ValueScope", { enumerable: true, get: function () { return scope_2.ValueScope; } });
|
|
16055
|
+
Object.defineProperty(exports$1, "ValueScopeName", { enumerable: true, get: function () { return scope_2.ValueScopeName; } });
|
|
16056
|
+
Object.defineProperty(exports$1, "varKinds", { enumerable: true, get: function () { return scope_2.varKinds; } });
|
|
16057
|
+
exports$1.operators = {
|
|
16058
16058
|
GT: new code_1._Code(">"),
|
|
16059
16059
|
GTE: new code_1._Code(">="),
|
|
16060
16060
|
LT: new code_1._Code("<"),
|
|
@@ -16457,7 +16457,7 @@ function requireCodegen$1 () {
|
|
|
16457
16457
|
return this._leafNode(new Assign(lhs, rhs, sideEffects));
|
|
16458
16458
|
}
|
|
16459
16459
|
add(lhs, rhs) {
|
|
16460
|
-
return this._leafNode(new AssignOp(lhs, exports.operators.ADD, rhs));
|
|
16460
|
+
return this._leafNode(new AssignOp(lhs, exports$1.operators.ADD, rhs));
|
|
16461
16461
|
}
|
|
16462
16462
|
code(c) {
|
|
16463
16463
|
if (typeof c == "function")
|
|
@@ -16638,7 +16638,7 @@ function requireCodegen$1 () {
|
|
|
16638
16638
|
ns[ns.length - 1] = node;
|
|
16639
16639
|
}
|
|
16640
16640
|
}
|
|
16641
|
-
exports.CodeGen = CodeGen;
|
|
16641
|
+
exports$1.CodeGen = CodeGen;
|
|
16642
16642
|
function addNames(names, from) {
|
|
16643
16643
|
for (const n in from)
|
|
16644
16644
|
names[n] = (names[n] || 0) + (from[n] || 0);
|
|
@@ -16680,17 +16680,17 @@ function requireCodegen$1 () {
|
|
|
16680
16680
|
function not(x) {
|
|
16681
16681
|
return typeof x == "boolean" || typeof x == "number" || x === null ? !x : (0, code_1._) `!${par(x)}`;
|
|
16682
16682
|
}
|
|
16683
|
-
exports.not = not;
|
|
16684
|
-
const andCode = mappend(exports.operators.AND);
|
|
16683
|
+
exports$1.not = not;
|
|
16684
|
+
const andCode = mappend(exports$1.operators.AND);
|
|
16685
16685
|
function and(...args) {
|
|
16686
16686
|
return args.reduce(andCode);
|
|
16687
16687
|
}
|
|
16688
|
-
exports.and = and;
|
|
16689
|
-
const orCode = mappend(exports.operators.OR);
|
|
16688
|
+
exports$1.and = and;
|
|
16689
|
+
const orCode = mappend(exports$1.operators.OR);
|
|
16690
16690
|
function or(...args) {
|
|
16691
16691
|
return args.reduce(orCode);
|
|
16692
16692
|
}
|
|
16693
|
-
exports.or = or;
|
|
16693
|
+
exports$1.or = or;
|
|
16694
16694
|
function mappend(op) {
|
|
16695
16695
|
return (x, y) => (x === code_1.nil ? y : y === code_1.nil ? x : (0, code_1._) `${par(x)} ${op} ${par(y)}`);
|
|
16696
16696
|
}
|
|
@@ -16921,21 +16921,21 @@ var hasRequiredErrors$2;
|
|
|
16921
16921
|
function requireErrors$2 () {
|
|
16922
16922
|
if (hasRequiredErrors$2) return errors$2;
|
|
16923
16923
|
hasRequiredErrors$2 = 1;
|
|
16924
|
-
(function (exports) {
|
|
16925
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16926
|
-
exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = void 0;
|
|
16924
|
+
(function (exports$1) {
|
|
16925
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
16926
|
+
exports$1.extendErrors = exports$1.resetErrorsCount = exports$1.reportExtraError = exports$1.reportError = exports$1.keyword$DataError = exports$1.keywordError = void 0;
|
|
16927
16927
|
const codegen_1 = requireCodegen$1();
|
|
16928
16928
|
const util_1 = requireUtil$4();
|
|
16929
16929
|
const names_1 = requireNames$1();
|
|
16930
|
-
exports.keywordError = {
|
|
16930
|
+
exports$1.keywordError = {
|
|
16931
16931
|
message: ({ keyword }) => (0, codegen_1.str) `must pass "${keyword}" keyword validation`,
|
|
16932
16932
|
};
|
|
16933
|
-
exports.keyword$DataError = {
|
|
16933
|
+
exports$1.keyword$DataError = {
|
|
16934
16934
|
message: ({ keyword, schemaType }) => schemaType
|
|
16935
16935
|
? (0, codegen_1.str) `"${keyword}" keyword must be ${schemaType} ($data)`
|
|
16936
16936
|
: (0, codegen_1.str) `"${keyword}" keyword is invalid ($data)`,
|
|
16937
16937
|
};
|
|
16938
|
-
function reportError(cxt, error = exports.keywordError, errorPaths, overrideAllErrors) {
|
|
16938
|
+
function reportError(cxt, error = exports$1.keywordError, errorPaths, overrideAllErrors) {
|
|
16939
16939
|
const { it } = cxt;
|
|
16940
16940
|
const { gen, compositeRule, allErrors } = it;
|
|
16941
16941
|
const errObj = errorObjectCode(cxt, error, errorPaths);
|
|
@@ -16946,8 +16946,8 @@ function requireErrors$2 () {
|
|
|
16946
16946
|
returnErrors(it, (0, codegen_1._) `[${errObj}]`);
|
|
16947
16947
|
}
|
|
16948
16948
|
}
|
|
16949
|
-
exports.reportError = reportError;
|
|
16950
|
-
function reportExtraError(cxt, error = exports.keywordError, errorPaths) {
|
|
16949
|
+
exports$1.reportError = reportError;
|
|
16950
|
+
function reportExtraError(cxt, error = exports$1.keywordError, errorPaths) {
|
|
16951
16951
|
const { it } = cxt;
|
|
16952
16952
|
const { gen, compositeRule, allErrors } = it;
|
|
16953
16953
|
const errObj = errorObjectCode(cxt, error, errorPaths);
|
|
@@ -16956,12 +16956,12 @@ function requireErrors$2 () {
|
|
|
16956
16956
|
returnErrors(it, names_1.default.vErrors);
|
|
16957
16957
|
}
|
|
16958
16958
|
}
|
|
16959
|
-
exports.reportExtraError = reportExtraError;
|
|
16959
|
+
exports$1.reportExtraError = reportExtraError;
|
|
16960
16960
|
function resetErrorsCount(gen, errsCount) {
|
|
16961
16961
|
gen.assign(names_1.default.errors, errsCount);
|
|
16962
16962
|
gen.if((0, codegen_1._) `${names_1.default.vErrors} !== null`, () => gen.if(errsCount, () => gen.assign((0, codegen_1._) `${names_1.default.vErrors}.length`, errsCount), () => gen.assign(names_1.default.vErrors, null)));
|
|
16963
16963
|
}
|
|
16964
|
-
exports.resetErrorsCount = resetErrorsCount;
|
|
16964
|
+
exports$1.resetErrorsCount = resetErrorsCount;
|
|
16965
16965
|
function extendErrors({ gen, keyword, schemaValue, data, errsCount, it, }) {
|
|
16966
16966
|
if (errsCount === undefined)
|
|
16967
16967
|
throw new Error("ajv implementation error");
|
|
@@ -16976,7 +16976,7 @@ function requireErrors$2 () {
|
|
|
16976
16976
|
}
|
|
16977
16977
|
});
|
|
16978
16978
|
}
|
|
16979
|
-
exports.extendErrors = extendErrors;
|
|
16979
|
+
exports$1.extendErrors = extendErrors;
|
|
16980
16980
|
function addError(gen, errObj) {
|
|
16981
16981
|
const err = gen.const("err", errObj);
|
|
16982
16982
|
gen.if((0, codegen_1._) `${names_1.default.vErrors} === null`, () => gen.assign(names_1.default.vErrors, (0, codegen_1._) `[${err}]`), (0, codegen_1._) `${names_1.default.vErrors}.push(${err})`);
|
|
@@ -19584,18 +19584,18 @@ var hasRequiredCore$4;
|
|
|
19584
19584
|
function requireCore$4 () {
|
|
19585
19585
|
if (hasRequiredCore$4) return core$4;
|
|
19586
19586
|
hasRequiredCore$4 = 1;
|
|
19587
|
-
(function (exports) {
|
|
19588
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19589
|
-
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
19587
|
+
(function (exports$1) {
|
|
19588
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
19589
|
+
exports$1.CodeGen = exports$1.Name = exports$1.nil = exports$1.stringify = exports$1.str = exports$1._ = exports$1.KeywordCxt = void 0;
|
|
19590
19590
|
var validate_1 = requireValidate$1();
|
|
19591
|
-
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
19591
|
+
Object.defineProperty(exports$1, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
19592
19592
|
var codegen_1 = requireCodegen$1();
|
|
19593
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
19594
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
19595
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
19596
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
19597
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
19598
|
-
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
19593
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
19594
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
19595
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
19596
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
19597
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
19598
|
+
Object.defineProperty(exports$1, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
19599
19599
|
const validation_error_1 = requireValidation_error$1();
|
|
19600
19600
|
const ref_error_1 = requireRef_error$1();
|
|
19601
19601
|
const rules_1 = requireRules$1();
|
|
@@ -20057,7 +20057,7 @@ function requireCore$4 () {
|
|
|
20057
20057
|
}
|
|
20058
20058
|
Ajv.ValidationError = validation_error_1.default;
|
|
20059
20059
|
Ajv.MissingRefError = ref_error_1.default;
|
|
20060
|
-
exports.default = Ajv;
|
|
20060
|
+
exports$1.default = Ajv;
|
|
20061
20061
|
function checkOptions(checkOpts, options, msg, log = "error") {
|
|
20062
20062
|
for (const key in checkOpts) {
|
|
20063
20063
|
const opt = key;
|
|
@@ -21171,13 +21171,13 @@ var hasRequiredDependencies$1;
|
|
|
21171
21171
|
function requireDependencies$1 () {
|
|
21172
21172
|
if (hasRequiredDependencies$1) return dependencies$1;
|
|
21173
21173
|
hasRequiredDependencies$1 = 1;
|
|
21174
|
-
(function (exports) {
|
|
21175
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21176
|
-
exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = void 0;
|
|
21174
|
+
(function (exports$1) {
|
|
21175
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
21176
|
+
exports$1.validateSchemaDeps = exports$1.validatePropertyDeps = exports$1.error = void 0;
|
|
21177
21177
|
const codegen_1 = requireCodegen$1();
|
|
21178
21178
|
const util_1 = requireUtil$4();
|
|
21179
21179
|
const code_1 = requireCode$3();
|
|
21180
|
-
exports.error = {
|
|
21180
|
+
exports$1.error = {
|
|
21181
21181
|
message: ({ params: { property, depsCount, deps } }) => {
|
|
21182
21182
|
const property_ies = depsCount === 1 ? "property" : "properties";
|
|
21183
21183
|
return (0, codegen_1.str) `must have ${property_ies} ${deps} when property ${property} is present`;
|
|
@@ -21191,7 +21191,7 @@ function requireDependencies$1 () {
|
|
|
21191
21191
|
keyword: "dependencies",
|
|
21192
21192
|
type: "object",
|
|
21193
21193
|
schemaType: "object",
|
|
21194
|
-
error: exports.error,
|
|
21194
|
+
error: exports$1.error,
|
|
21195
21195
|
code(cxt) {
|
|
21196
21196
|
const [propDeps, schDeps] = splitDependencies(cxt);
|
|
21197
21197
|
validatePropertyDeps(cxt, propDeps);
|
|
@@ -21238,7 +21238,7 @@ function requireDependencies$1 () {
|
|
|
21238
21238
|
}
|
|
21239
21239
|
}
|
|
21240
21240
|
}
|
|
21241
|
-
exports.validatePropertyDeps = validatePropertyDeps;
|
|
21241
|
+
exports$1.validatePropertyDeps = validatePropertyDeps;
|
|
21242
21242
|
function validateSchemaDeps(cxt, schemaDeps = cxt.schema) {
|
|
21243
21243
|
const { gen, data, keyword, it } = cxt;
|
|
21244
21244
|
const valid = gen.name("valid");
|
|
@@ -21253,8 +21253,8 @@ function requireDependencies$1 () {
|
|
|
21253
21253
|
cxt.ok(valid);
|
|
21254
21254
|
}
|
|
21255
21255
|
}
|
|
21256
|
-
exports.validateSchemaDeps = validateSchemaDeps;
|
|
21257
|
-
exports.default = def;
|
|
21256
|
+
exports$1.validateSchemaDeps = validateSchemaDeps;
|
|
21257
|
+
exports$1.default = def;
|
|
21258
21258
|
} (dependencies$1));
|
|
21259
21259
|
return dependencies$1;
|
|
21260
21260
|
}
|
|
@@ -22400,9 +22400,9 @@ var hasRequiredAjv$1;
|
|
|
22400
22400
|
function requireAjv$1 () {
|
|
22401
22401
|
if (hasRequiredAjv$1) return ajv$1.exports;
|
|
22402
22402
|
hasRequiredAjv$1 = 1;
|
|
22403
|
-
(function (module, exports) {
|
|
22404
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22405
|
-
exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = void 0;
|
|
22403
|
+
(function (module, exports$1) {
|
|
22404
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22405
|
+
exports$1.MissingRefError = exports$1.ValidationError = exports$1.CodeGen = exports$1.Name = exports$1.nil = exports$1.stringify = exports$1.str = exports$1._ = exports$1.KeywordCxt = exports$1.Ajv = void 0;
|
|
22406
22406
|
const core_1 = requireCore$4();
|
|
22407
22407
|
const draft7_1 = requireDraft7$1();
|
|
22408
22408
|
const discriminator_1 = requireDiscriminator$1();
|
|
@@ -22431,24 +22431,24 @@ function requireAjv$1 () {
|
|
|
22431
22431
|
super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : undefined));
|
|
22432
22432
|
}
|
|
22433
22433
|
}
|
|
22434
|
-
exports.Ajv = Ajv;
|
|
22435
|
-
module.exports = exports = Ajv;
|
|
22434
|
+
exports$1.Ajv = Ajv;
|
|
22435
|
+
module.exports = exports$1 = Ajv;
|
|
22436
22436
|
module.exports.Ajv = Ajv;
|
|
22437
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22438
|
-
exports.default = Ajv;
|
|
22437
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22438
|
+
exports$1.default = Ajv;
|
|
22439
22439
|
var validate_1 = requireValidate$1();
|
|
22440
|
-
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
22440
|
+
Object.defineProperty(exports$1, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
22441
22441
|
var codegen_1 = requireCodegen$1();
|
|
22442
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
22443
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
22444
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
22445
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
22446
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
22447
|
-
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
22442
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
22443
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
22444
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
22445
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
22446
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
22447
|
+
Object.defineProperty(exports$1, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
22448
22448
|
var validation_error_1 = requireValidation_error$1();
|
|
22449
|
-
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
|
|
22449
|
+
Object.defineProperty(exports$1, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
|
|
22450
22450
|
var ref_error_1 = requireRef_error$1();
|
|
22451
|
-
Object.defineProperty(exports, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
|
|
22451
|
+
Object.defineProperty(exports$1, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
|
|
22452
22452
|
} (ajv$1, ajv$1.exports));
|
|
22453
22453
|
return ajv$1.exports;
|
|
22454
22454
|
}
|
|
@@ -22464,13 +22464,13 @@ var hasRequiredFormats;
|
|
|
22464
22464
|
function requireFormats () {
|
|
22465
22465
|
if (hasRequiredFormats) return formats;
|
|
22466
22466
|
hasRequiredFormats = 1;
|
|
22467
|
-
(function (exports) {
|
|
22468
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22469
|
-
exports.formatNames = exports.fastFormats = exports.fullFormats = void 0;
|
|
22467
|
+
(function (exports$1) {
|
|
22468
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22469
|
+
exports$1.formatNames = exports$1.fastFormats = exports$1.fullFormats = void 0;
|
|
22470
22470
|
function fmtDef(validate, compare) {
|
|
22471
22471
|
return { validate, compare };
|
|
22472
22472
|
}
|
|
22473
|
-
exports.fullFormats = {
|
|
22473
|
+
exports$1.fullFormats = {
|
|
22474
22474
|
date: fmtDef(date, compareDate),
|
|
22475
22475
|
time: fmtDef(getTime(true), compareTime),
|
|
22476
22476
|
"date-time": fmtDef(getDateTime(true), compareDateTime),
|
|
@@ -22498,8 +22498,8 @@ function requireFormats () {
|
|
|
22498
22498
|
password: true,
|
|
22499
22499
|
binary: true,
|
|
22500
22500
|
};
|
|
22501
|
-
exports.fastFormats = {
|
|
22502
|
-
...exports.fullFormats,
|
|
22501
|
+
exports$1.fastFormats = {
|
|
22502
|
+
...exports$1.fullFormats,
|
|
22503
22503
|
date: fmtDef(/^\d\d\d\d-[0-1]\d-[0-3]\d$/, compareDate),
|
|
22504
22504
|
time: fmtDef(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i, compareTime),
|
|
22505
22505
|
"date-time": fmtDef(/^\d\d\d\d-[0-1]\d-[0-3]\dt(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i, compareDateTime),
|
|
@@ -22509,7 +22509,7 @@ function requireFormats () {
|
|
|
22509
22509
|
"uri-reference": /^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,
|
|
22510
22510
|
email: /^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,
|
|
22511
22511
|
};
|
|
22512
|
-
exports.formatNames = Object.keys(exports.fullFormats);
|
|
22512
|
+
exports$1.formatNames = Object.keys(exports$1.fullFormats);
|
|
22513
22513
|
function isLeapYear(year) {
|
|
22514
22514
|
return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
|
|
22515
22515
|
}
|
|
@@ -22667,17 +22667,17 @@ var hasRequiredCode$2;
|
|
|
22667
22667
|
function requireCode$2 () {
|
|
22668
22668
|
if (hasRequiredCode$2) return code$2;
|
|
22669
22669
|
hasRequiredCode$2 = 1;
|
|
22670
|
-
(function (exports) {
|
|
22671
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22672
|
-
exports.regexpCode = exports.getEsmExportName = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = void 0;
|
|
22670
|
+
(function (exports$1) {
|
|
22671
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22672
|
+
exports$1.regexpCode = exports$1.getEsmExportName = exports$1.getProperty = exports$1.safeStringify = exports$1.stringify = exports$1.strConcat = exports$1.addCodeArg = exports$1.str = exports$1._ = exports$1.nil = exports$1._Code = exports$1.Name = exports$1.IDENTIFIER = exports$1._CodeOrName = void 0;
|
|
22673
22673
|
class _CodeOrName {
|
|
22674
22674
|
}
|
|
22675
|
-
exports._CodeOrName = _CodeOrName;
|
|
22676
|
-
exports.IDENTIFIER = /^[a-z$_][a-z$_0-9]*$/i;
|
|
22675
|
+
exports$1._CodeOrName = _CodeOrName;
|
|
22676
|
+
exports$1.IDENTIFIER = /^[a-z$_][a-z$_0-9]*$/i;
|
|
22677
22677
|
class Name extends _CodeOrName {
|
|
22678
22678
|
constructor(s) {
|
|
22679
22679
|
super();
|
|
22680
|
-
if (!exports.IDENTIFIER.test(s))
|
|
22680
|
+
if (!exports$1.IDENTIFIER.test(s))
|
|
22681
22681
|
throw new Error("CodeGen: name must be a valid identifier");
|
|
22682
22682
|
this.str = s;
|
|
22683
22683
|
}
|
|
@@ -22691,7 +22691,7 @@ function requireCode$2 () {
|
|
|
22691
22691
|
return { [this.str]: 1 };
|
|
22692
22692
|
}
|
|
22693
22693
|
}
|
|
22694
|
-
exports.Name = Name;
|
|
22694
|
+
exports$1.Name = Name;
|
|
22695
22695
|
class _Code extends _CodeOrName {
|
|
22696
22696
|
constructor(code) {
|
|
22697
22697
|
super();
|
|
@@ -22719,8 +22719,8 @@ function requireCode$2 () {
|
|
|
22719
22719
|
}, {})));
|
|
22720
22720
|
}
|
|
22721
22721
|
}
|
|
22722
|
-
exports._Code = _Code;
|
|
22723
|
-
exports.nil = new _Code("");
|
|
22722
|
+
exports$1._Code = _Code;
|
|
22723
|
+
exports$1.nil = new _Code("");
|
|
22724
22724
|
function _(strs, ...args) {
|
|
22725
22725
|
const code = [strs[0]];
|
|
22726
22726
|
let i = 0;
|
|
@@ -22730,7 +22730,7 @@ function requireCode$2 () {
|
|
|
22730
22730
|
}
|
|
22731
22731
|
return new _Code(code);
|
|
22732
22732
|
}
|
|
22733
|
-
exports._ = _;
|
|
22733
|
+
exports$1._ = _;
|
|
22734
22734
|
const plus = new _Code("+");
|
|
22735
22735
|
function str(strs, ...args) {
|
|
22736
22736
|
const expr = [safeStringify(strs[0])];
|
|
@@ -22743,7 +22743,7 @@ function requireCode$2 () {
|
|
|
22743
22743
|
optimize(expr);
|
|
22744
22744
|
return new _Code(expr);
|
|
22745
22745
|
}
|
|
22746
|
-
exports.str = str;
|
|
22746
|
+
exports$1.str = str;
|
|
22747
22747
|
function addCodeArg(code, arg) {
|
|
22748
22748
|
if (arg instanceof _Code)
|
|
22749
22749
|
code.push(...arg._items);
|
|
@@ -22752,7 +22752,7 @@ function requireCode$2 () {
|
|
|
22752
22752
|
else
|
|
22753
22753
|
code.push(interpolate(arg));
|
|
22754
22754
|
}
|
|
22755
|
-
exports.addCodeArg = addCodeArg;
|
|
22755
|
+
exports$1.addCodeArg = addCodeArg;
|
|
22756
22756
|
function optimize(expr) {
|
|
22757
22757
|
let i = 1;
|
|
22758
22758
|
while (i < expr.length - 1) {
|
|
@@ -22788,7 +22788,7 @@ function requireCode$2 () {
|
|
|
22788
22788
|
function strConcat(c1, c2) {
|
|
22789
22789
|
return c2.emptyStr() ? c1 : c1.emptyStr() ? c2 : str `${c1}${c2}`;
|
|
22790
22790
|
}
|
|
22791
|
-
exports.strConcat = strConcat;
|
|
22791
|
+
exports$1.strConcat = strConcat;
|
|
22792
22792
|
function interpolate(x) {
|
|
22793
22793
|
return typeof x == "number" || typeof x == "boolean" || x === null
|
|
22794
22794
|
? x
|
|
@@ -22797,28 +22797,28 @@ function requireCode$2 () {
|
|
|
22797
22797
|
function stringify(x) {
|
|
22798
22798
|
return new _Code(safeStringify(x));
|
|
22799
22799
|
}
|
|
22800
|
-
exports.stringify = stringify;
|
|
22800
|
+
exports$1.stringify = stringify;
|
|
22801
22801
|
function safeStringify(x) {
|
|
22802
22802
|
return JSON.stringify(x)
|
|
22803
22803
|
.replace(/\u2028/g, "\\u2028")
|
|
22804
22804
|
.replace(/\u2029/g, "\\u2029");
|
|
22805
22805
|
}
|
|
22806
|
-
exports.safeStringify = safeStringify;
|
|
22806
|
+
exports$1.safeStringify = safeStringify;
|
|
22807
22807
|
function getProperty(key) {
|
|
22808
|
-
return typeof key == "string" && exports.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _ `[${key}]`;
|
|
22808
|
+
return typeof key == "string" && exports$1.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _ `[${key}]`;
|
|
22809
22809
|
}
|
|
22810
|
-
exports.getProperty = getProperty;
|
|
22810
|
+
exports$1.getProperty = getProperty;
|
|
22811
22811
|
function getEsmExportName(key) {
|
|
22812
|
-
if (typeof key == "string" && exports.IDENTIFIER.test(key)) {
|
|
22812
|
+
if (typeof key == "string" && exports$1.IDENTIFIER.test(key)) {
|
|
22813
22813
|
return new _Code(`${key}`);
|
|
22814
22814
|
}
|
|
22815
22815
|
throw new Error(`CodeGen: invalid export name: ${key}, use explicit $id name mapping`);
|
|
22816
22816
|
}
|
|
22817
|
-
exports.getEsmExportName = getEsmExportName;
|
|
22817
|
+
exports$1.getEsmExportName = getEsmExportName;
|
|
22818
22818
|
function regexpCode(rx) {
|
|
22819
22819
|
return new _Code(rx.toString());
|
|
22820
22820
|
}
|
|
22821
|
-
exports.regexpCode = regexpCode;
|
|
22821
|
+
exports$1.regexpCode = regexpCode;
|
|
22822
22822
|
} (code$2));
|
|
22823
22823
|
return code$2;
|
|
22824
22824
|
}
|
|
@@ -22830,9 +22830,9 @@ var hasRequiredScope$1;
|
|
|
22830
22830
|
function requireScope$1 () {
|
|
22831
22831
|
if (hasRequiredScope$1) return scope$1;
|
|
22832
22832
|
hasRequiredScope$1 = 1;
|
|
22833
|
-
(function (exports) {
|
|
22834
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22835
|
-
exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = void 0;
|
|
22833
|
+
(function (exports$1) {
|
|
22834
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22835
|
+
exports$1.ValueScope = exports$1.ValueScopeName = exports$1.Scope = exports$1.varKinds = exports$1.UsedValueState = void 0;
|
|
22836
22836
|
const code_1 = requireCode$2();
|
|
22837
22837
|
class ValueError extends Error {
|
|
22838
22838
|
constructor(name) {
|
|
@@ -22844,8 +22844,8 @@ function requireScope$1 () {
|
|
|
22844
22844
|
(function (UsedValueState) {
|
|
22845
22845
|
UsedValueState[UsedValueState["Started"] = 0] = "Started";
|
|
22846
22846
|
UsedValueState[UsedValueState["Completed"] = 1] = "Completed";
|
|
22847
|
-
})(UsedValueState || (exports.UsedValueState = UsedValueState = {}));
|
|
22848
|
-
exports.varKinds = {
|
|
22847
|
+
})(UsedValueState || (exports$1.UsedValueState = UsedValueState = {}));
|
|
22848
|
+
exports$1.varKinds = {
|
|
22849
22849
|
const: new code_1.Name("const"),
|
|
22850
22850
|
let: new code_1.Name("let"),
|
|
22851
22851
|
var: new code_1.Name("var"),
|
|
@@ -22874,7 +22874,7 @@ function requireScope$1 () {
|
|
|
22874
22874
|
return (this._names[prefix] = { prefix, index: 0 });
|
|
22875
22875
|
}
|
|
22876
22876
|
}
|
|
22877
|
-
exports.Scope = Scope;
|
|
22877
|
+
exports$1.Scope = Scope;
|
|
22878
22878
|
class ValueScopeName extends code_1.Name {
|
|
22879
22879
|
constructor(prefix, nameStr) {
|
|
22880
22880
|
super(nameStr);
|
|
@@ -22885,7 +22885,7 @@ function requireScope$1 () {
|
|
|
22885
22885
|
this.scopePath = (0, code_1._) `.${new code_1.Name(property)}[${itemIndex}]`;
|
|
22886
22886
|
}
|
|
22887
22887
|
}
|
|
22888
|
-
exports.ValueScopeName = ValueScopeName;
|
|
22888
|
+
exports$1.ValueScopeName = ValueScopeName;
|
|
22889
22889
|
const line = (0, code_1._) `\n`;
|
|
22890
22890
|
class ValueScope extends Scope {
|
|
22891
22891
|
constructor(opts) {
|
|
@@ -22956,7 +22956,7 @@ function requireScope$1 () {
|
|
|
22956
22956
|
nameSet.set(name, UsedValueState.Started);
|
|
22957
22957
|
let c = valueCode(name);
|
|
22958
22958
|
if (c) {
|
|
22959
|
-
const def = this.opts.es5 ? exports.varKinds.var : exports.varKinds.const;
|
|
22959
|
+
const def = this.opts.es5 ? exports$1.varKinds.var : exports$1.varKinds.const;
|
|
22960
22960
|
code = (0, code_1._) `${code}${def} ${name} = ${c};${this.opts._n}`;
|
|
22961
22961
|
}
|
|
22962
22962
|
else if ((c = getCode === null || getCode === void 0 ? void 0 : getCode(name))) {
|
|
@@ -22971,7 +22971,7 @@ function requireScope$1 () {
|
|
|
22971
22971
|
return code;
|
|
22972
22972
|
}
|
|
22973
22973
|
}
|
|
22974
|
-
exports.ValueScope = ValueScope;
|
|
22974
|
+
exports$1.ValueScope = ValueScope;
|
|
22975
22975
|
} (scope$1));
|
|
22976
22976
|
return scope$1;
|
|
22977
22977
|
}
|
|
@@ -22981,26 +22981,26 @@ var hasRequiredCodegen;
|
|
|
22981
22981
|
function requireCodegen () {
|
|
22982
22982
|
if (hasRequiredCodegen) return codegen;
|
|
22983
22983
|
hasRequiredCodegen = 1;
|
|
22984
|
-
(function (exports) {
|
|
22985
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22986
|
-
exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = void 0;
|
|
22984
|
+
(function (exports$1) {
|
|
22985
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
22986
|
+
exports$1.or = exports$1.and = exports$1.not = exports$1.CodeGen = exports$1.operators = exports$1.varKinds = exports$1.ValueScopeName = exports$1.ValueScope = exports$1.Scope = exports$1.Name = exports$1.regexpCode = exports$1.stringify = exports$1.getProperty = exports$1.nil = exports$1.strConcat = exports$1.str = exports$1._ = void 0;
|
|
22987
22987
|
const code_1 = requireCode$2();
|
|
22988
22988
|
const scope_1 = requireScope$1();
|
|
22989
22989
|
var code_2 = requireCode$2();
|
|
22990
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return code_2._; } });
|
|
22991
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return code_2.str; } });
|
|
22992
|
-
Object.defineProperty(exports, "strConcat", { enumerable: true, get: function () { return code_2.strConcat; } });
|
|
22993
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return code_2.nil; } });
|
|
22994
|
-
Object.defineProperty(exports, "getProperty", { enumerable: true, get: function () { return code_2.getProperty; } });
|
|
22995
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return code_2.stringify; } });
|
|
22996
|
-
Object.defineProperty(exports, "regexpCode", { enumerable: true, get: function () { return code_2.regexpCode; } });
|
|
22997
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return code_2.Name; } });
|
|
22990
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return code_2._; } });
|
|
22991
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return code_2.str; } });
|
|
22992
|
+
Object.defineProperty(exports$1, "strConcat", { enumerable: true, get: function () { return code_2.strConcat; } });
|
|
22993
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return code_2.nil; } });
|
|
22994
|
+
Object.defineProperty(exports$1, "getProperty", { enumerable: true, get: function () { return code_2.getProperty; } });
|
|
22995
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return code_2.stringify; } });
|
|
22996
|
+
Object.defineProperty(exports$1, "regexpCode", { enumerable: true, get: function () { return code_2.regexpCode; } });
|
|
22997
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return code_2.Name; } });
|
|
22998
22998
|
var scope_2 = requireScope$1();
|
|
22999
|
-
Object.defineProperty(exports, "Scope", { enumerable: true, get: function () { return scope_2.Scope; } });
|
|
23000
|
-
Object.defineProperty(exports, "ValueScope", { enumerable: true, get: function () { return scope_2.ValueScope; } });
|
|
23001
|
-
Object.defineProperty(exports, "ValueScopeName", { enumerable: true, get: function () { return scope_2.ValueScopeName; } });
|
|
23002
|
-
Object.defineProperty(exports, "varKinds", { enumerable: true, get: function () { return scope_2.varKinds; } });
|
|
23003
|
-
exports.operators = {
|
|
22999
|
+
Object.defineProperty(exports$1, "Scope", { enumerable: true, get: function () { return scope_2.Scope; } });
|
|
23000
|
+
Object.defineProperty(exports$1, "ValueScope", { enumerable: true, get: function () { return scope_2.ValueScope; } });
|
|
23001
|
+
Object.defineProperty(exports$1, "ValueScopeName", { enumerable: true, get: function () { return scope_2.ValueScopeName; } });
|
|
23002
|
+
Object.defineProperty(exports$1, "varKinds", { enumerable: true, get: function () { return scope_2.varKinds; } });
|
|
23003
|
+
exports$1.operators = {
|
|
23004
23004
|
GT: new code_1._Code(">"),
|
|
23005
23005
|
GTE: new code_1._Code(">="),
|
|
23006
23006
|
LT: new code_1._Code("<"),
|
|
@@ -23403,7 +23403,7 @@ function requireCodegen () {
|
|
|
23403
23403
|
return this._leafNode(new Assign(lhs, rhs, sideEffects));
|
|
23404
23404
|
}
|
|
23405
23405
|
add(lhs, rhs) {
|
|
23406
|
-
return this._leafNode(new AssignOp(lhs, exports.operators.ADD, rhs));
|
|
23406
|
+
return this._leafNode(new AssignOp(lhs, exports$1.operators.ADD, rhs));
|
|
23407
23407
|
}
|
|
23408
23408
|
code(c) {
|
|
23409
23409
|
if (typeof c == "function")
|
|
@@ -23584,7 +23584,7 @@ function requireCodegen () {
|
|
|
23584
23584
|
ns[ns.length - 1] = node;
|
|
23585
23585
|
}
|
|
23586
23586
|
}
|
|
23587
|
-
exports.CodeGen = CodeGen;
|
|
23587
|
+
exports$1.CodeGen = CodeGen;
|
|
23588
23588
|
function addNames(names, from) {
|
|
23589
23589
|
for (const n in from)
|
|
23590
23590
|
names[n] = (names[n] || 0) + (from[n] || 0);
|
|
@@ -23626,17 +23626,17 @@ function requireCodegen () {
|
|
|
23626
23626
|
function not(x) {
|
|
23627
23627
|
return typeof x == "boolean" || typeof x == "number" || x === null ? !x : (0, code_1._) `!${par(x)}`;
|
|
23628
23628
|
}
|
|
23629
|
-
exports.not = not;
|
|
23630
|
-
const andCode = mappend(exports.operators.AND);
|
|
23629
|
+
exports$1.not = not;
|
|
23630
|
+
const andCode = mappend(exports$1.operators.AND);
|
|
23631
23631
|
function and(...args) {
|
|
23632
23632
|
return args.reduce(andCode);
|
|
23633
23633
|
}
|
|
23634
|
-
exports.and = and;
|
|
23635
|
-
const orCode = mappend(exports.operators.OR);
|
|
23634
|
+
exports$1.and = and;
|
|
23635
|
+
const orCode = mappend(exports$1.operators.OR);
|
|
23636
23636
|
function or(...args) {
|
|
23637
23637
|
return args.reduce(orCode);
|
|
23638
23638
|
}
|
|
23639
|
-
exports.or = or;
|
|
23639
|
+
exports$1.or = or;
|
|
23640
23640
|
function mappend(op) {
|
|
23641
23641
|
return (x, y) => (x === code_1.nil ? y : y === code_1.nil ? x : (0, code_1._) `${par(x)} ${op} ${par(y)}`);
|
|
23642
23642
|
}
|
|
@@ -23867,21 +23867,21 @@ var hasRequiredErrors$1;
|
|
|
23867
23867
|
function requireErrors$1 () {
|
|
23868
23868
|
if (hasRequiredErrors$1) return errors$1;
|
|
23869
23869
|
hasRequiredErrors$1 = 1;
|
|
23870
|
-
(function (exports) {
|
|
23871
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23872
|
-
exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = void 0;
|
|
23870
|
+
(function (exports$1) {
|
|
23871
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
23872
|
+
exports$1.extendErrors = exports$1.resetErrorsCount = exports$1.reportExtraError = exports$1.reportError = exports$1.keyword$DataError = exports$1.keywordError = void 0;
|
|
23873
23873
|
const codegen_1 = requireCodegen();
|
|
23874
23874
|
const util_1 = requireUtil$3();
|
|
23875
23875
|
const names_1 = requireNames();
|
|
23876
|
-
exports.keywordError = {
|
|
23876
|
+
exports$1.keywordError = {
|
|
23877
23877
|
message: ({ keyword }) => (0, codegen_1.str) `must pass "${keyword}" keyword validation`,
|
|
23878
23878
|
};
|
|
23879
|
-
exports.keyword$DataError = {
|
|
23879
|
+
exports$1.keyword$DataError = {
|
|
23880
23880
|
message: ({ keyword, schemaType }) => schemaType
|
|
23881
23881
|
? (0, codegen_1.str) `"${keyword}" keyword must be ${schemaType} ($data)`
|
|
23882
23882
|
: (0, codegen_1.str) `"${keyword}" keyword is invalid ($data)`,
|
|
23883
23883
|
};
|
|
23884
|
-
function reportError(cxt, error = exports.keywordError, errorPaths, overrideAllErrors) {
|
|
23884
|
+
function reportError(cxt, error = exports$1.keywordError, errorPaths, overrideAllErrors) {
|
|
23885
23885
|
const { it } = cxt;
|
|
23886
23886
|
const { gen, compositeRule, allErrors } = it;
|
|
23887
23887
|
const errObj = errorObjectCode(cxt, error, errorPaths);
|
|
@@ -23892,8 +23892,8 @@ function requireErrors$1 () {
|
|
|
23892
23892
|
returnErrors(it, (0, codegen_1._) `[${errObj}]`);
|
|
23893
23893
|
}
|
|
23894
23894
|
}
|
|
23895
|
-
exports.reportError = reportError;
|
|
23896
|
-
function reportExtraError(cxt, error = exports.keywordError, errorPaths) {
|
|
23895
|
+
exports$1.reportError = reportError;
|
|
23896
|
+
function reportExtraError(cxt, error = exports$1.keywordError, errorPaths) {
|
|
23897
23897
|
const { it } = cxt;
|
|
23898
23898
|
const { gen, compositeRule, allErrors } = it;
|
|
23899
23899
|
const errObj = errorObjectCode(cxt, error, errorPaths);
|
|
@@ -23902,12 +23902,12 @@ function requireErrors$1 () {
|
|
|
23902
23902
|
returnErrors(it, names_1.default.vErrors);
|
|
23903
23903
|
}
|
|
23904
23904
|
}
|
|
23905
|
-
exports.reportExtraError = reportExtraError;
|
|
23905
|
+
exports$1.reportExtraError = reportExtraError;
|
|
23906
23906
|
function resetErrorsCount(gen, errsCount) {
|
|
23907
23907
|
gen.assign(names_1.default.errors, errsCount);
|
|
23908
23908
|
gen.if((0, codegen_1._) `${names_1.default.vErrors} !== null`, () => gen.if(errsCount, () => gen.assign((0, codegen_1._) `${names_1.default.vErrors}.length`, errsCount), () => gen.assign(names_1.default.vErrors, null)));
|
|
23909
23909
|
}
|
|
23910
|
-
exports.resetErrorsCount = resetErrorsCount;
|
|
23910
|
+
exports$1.resetErrorsCount = resetErrorsCount;
|
|
23911
23911
|
function extendErrors({ gen, keyword, schemaValue, data, errsCount, it, }) {
|
|
23912
23912
|
if (errsCount === undefined)
|
|
23913
23913
|
throw new Error("ajv implementation error");
|
|
@@ -23922,7 +23922,7 @@ function requireErrors$1 () {
|
|
|
23922
23922
|
}
|
|
23923
23923
|
});
|
|
23924
23924
|
}
|
|
23925
|
-
exports.extendErrors = extendErrors;
|
|
23925
|
+
exports$1.extendErrors = extendErrors;
|
|
23926
23926
|
function addError(gen, errObj) {
|
|
23927
23927
|
const err = gen.const("err", errObj);
|
|
23928
23928
|
gen.if((0, codegen_1._) `${names_1.default.vErrors} === null`, () => gen.assign(names_1.default.vErrors, (0, codegen_1._) `[${err}]`), (0, codegen_1._) `${names_1.default.vErrors}.push(${err})`);
|
|
@@ -25800,18 +25800,18 @@ var hasRequiredCore$2;
|
|
|
25800
25800
|
function requireCore$2 () {
|
|
25801
25801
|
if (hasRequiredCore$2) return core$2;
|
|
25802
25802
|
hasRequiredCore$2 = 1;
|
|
25803
|
-
(function (exports) {
|
|
25804
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25805
|
-
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
25803
|
+
(function (exports$1) {
|
|
25804
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
25805
|
+
exports$1.CodeGen = exports$1.Name = exports$1.nil = exports$1.stringify = exports$1.str = exports$1._ = exports$1.KeywordCxt = void 0;
|
|
25806
25806
|
var validate_1 = requireValidate();
|
|
25807
|
-
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
25807
|
+
Object.defineProperty(exports$1, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
25808
25808
|
var codegen_1 = requireCodegen();
|
|
25809
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
25810
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
25811
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
25812
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
25813
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
25814
|
-
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
25809
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
25810
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
25811
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
25812
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
25813
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
25814
|
+
Object.defineProperty(exports$1, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
25815
25815
|
const validation_error_1 = requireValidation_error();
|
|
25816
25816
|
const ref_error_1 = requireRef_error();
|
|
25817
25817
|
const rules_1 = requireRules();
|
|
@@ -26273,7 +26273,7 @@ function requireCore$2 () {
|
|
|
26273
26273
|
}
|
|
26274
26274
|
Ajv.ValidationError = validation_error_1.default;
|
|
26275
26275
|
Ajv.MissingRefError = ref_error_1.default;
|
|
26276
|
-
exports.default = Ajv;
|
|
26276
|
+
exports$1.default = Ajv;
|
|
26277
26277
|
function checkOptions(checkOpts, options, msg, log = "error") {
|
|
26278
26278
|
for (const key in checkOpts) {
|
|
26279
26279
|
const opt = key;
|
|
@@ -27387,13 +27387,13 @@ var hasRequiredDependencies;
|
|
|
27387
27387
|
function requireDependencies () {
|
|
27388
27388
|
if (hasRequiredDependencies) return dependencies;
|
|
27389
27389
|
hasRequiredDependencies = 1;
|
|
27390
|
-
(function (exports) {
|
|
27391
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27392
|
-
exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = void 0;
|
|
27390
|
+
(function (exports$1) {
|
|
27391
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
27392
|
+
exports$1.validateSchemaDeps = exports$1.validatePropertyDeps = exports$1.error = void 0;
|
|
27393
27393
|
const codegen_1 = requireCodegen();
|
|
27394
27394
|
const util_1 = requireUtil$3();
|
|
27395
27395
|
const code_1 = requireCode$1();
|
|
27396
|
-
exports.error = {
|
|
27396
|
+
exports$1.error = {
|
|
27397
27397
|
message: ({ params: { property, depsCount, deps } }) => {
|
|
27398
27398
|
const property_ies = depsCount === 1 ? "property" : "properties";
|
|
27399
27399
|
return (0, codegen_1.str) `must have ${property_ies} ${deps} when property ${property} is present`;
|
|
@@ -27407,7 +27407,7 @@ function requireDependencies () {
|
|
|
27407
27407
|
keyword: "dependencies",
|
|
27408
27408
|
type: "object",
|
|
27409
27409
|
schemaType: "object",
|
|
27410
|
-
error: exports.error,
|
|
27410
|
+
error: exports$1.error,
|
|
27411
27411
|
code(cxt) {
|
|
27412
27412
|
const [propDeps, schDeps] = splitDependencies(cxt);
|
|
27413
27413
|
validatePropertyDeps(cxt, propDeps);
|
|
@@ -27454,7 +27454,7 @@ function requireDependencies () {
|
|
|
27454
27454
|
}
|
|
27455
27455
|
}
|
|
27456
27456
|
}
|
|
27457
|
-
exports.validatePropertyDeps = validatePropertyDeps;
|
|
27457
|
+
exports$1.validatePropertyDeps = validatePropertyDeps;
|
|
27458
27458
|
function validateSchemaDeps(cxt, schemaDeps = cxt.schema) {
|
|
27459
27459
|
const { gen, data, keyword, it } = cxt;
|
|
27460
27460
|
const valid = gen.name("valid");
|
|
@@ -27469,8 +27469,8 @@ function requireDependencies () {
|
|
|
27469
27469
|
cxt.ok(valid);
|
|
27470
27470
|
}
|
|
27471
27471
|
}
|
|
27472
|
-
exports.validateSchemaDeps = validateSchemaDeps;
|
|
27473
|
-
exports.default = def;
|
|
27472
|
+
exports$1.validateSchemaDeps = validateSchemaDeps;
|
|
27473
|
+
exports$1.default = def;
|
|
27474
27474
|
} (dependencies));
|
|
27475
27475
|
return dependencies;
|
|
27476
27476
|
}
|
|
@@ -28616,9 +28616,9 @@ var hasRequiredAjv;
|
|
|
28616
28616
|
function requireAjv () {
|
|
28617
28617
|
if (hasRequiredAjv) return ajv.exports;
|
|
28618
28618
|
hasRequiredAjv = 1;
|
|
28619
|
-
(function (module, exports) {
|
|
28620
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28621
|
-
exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = void 0;
|
|
28619
|
+
(function (module, exports$1) {
|
|
28620
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
28621
|
+
exports$1.MissingRefError = exports$1.ValidationError = exports$1.CodeGen = exports$1.Name = exports$1.nil = exports$1.stringify = exports$1.str = exports$1._ = exports$1.KeywordCxt = exports$1.Ajv = void 0;
|
|
28622
28622
|
const core_1 = requireCore$2();
|
|
28623
28623
|
const draft7_1 = requireDraft7();
|
|
28624
28624
|
const discriminator_1 = requireDiscriminator();
|
|
@@ -28647,24 +28647,24 @@ function requireAjv () {
|
|
|
28647
28647
|
super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : undefined));
|
|
28648
28648
|
}
|
|
28649
28649
|
}
|
|
28650
|
-
exports.Ajv = Ajv;
|
|
28651
|
-
module.exports = exports = Ajv;
|
|
28650
|
+
exports$1.Ajv = Ajv;
|
|
28651
|
+
module.exports = exports$1 = Ajv;
|
|
28652
28652
|
module.exports.Ajv = Ajv;
|
|
28653
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28654
|
-
exports.default = Ajv;
|
|
28653
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
28654
|
+
exports$1.default = Ajv;
|
|
28655
28655
|
var validate_1 = requireValidate();
|
|
28656
|
-
Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
28656
|
+
Object.defineProperty(exports$1, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
|
|
28657
28657
|
var codegen_1 = requireCodegen();
|
|
28658
|
-
Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
28659
|
-
Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
28660
|
-
Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
28661
|
-
Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
28662
|
-
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
28663
|
-
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
28658
|
+
Object.defineProperty(exports$1, "_", { enumerable: true, get: function () { return codegen_1._; } });
|
|
28659
|
+
Object.defineProperty(exports$1, "str", { enumerable: true, get: function () { return codegen_1.str; } });
|
|
28660
|
+
Object.defineProperty(exports$1, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
|
|
28661
|
+
Object.defineProperty(exports$1, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
|
|
28662
|
+
Object.defineProperty(exports$1, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
28663
|
+
Object.defineProperty(exports$1, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
28664
28664
|
var validation_error_1 = requireValidation_error();
|
|
28665
|
-
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
|
|
28665
|
+
Object.defineProperty(exports$1, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
|
|
28666
28666
|
var ref_error_1 = requireRef_error();
|
|
28667
|
-
Object.defineProperty(exports, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
|
|
28667
|
+
Object.defineProperty(exports$1, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
|
|
28668
28668
|
} (ajv, ajv.exports));
|
|
28669
28669
|
return ajv.exports;
|
|
28670
28670
|
}
|
|
@@ -28674,9 +28674,9 @@ var hasRequiredLimit;
|
|
|
28674
28674
|
function requireLimit () {
|
|
28675
28675
|
if (hasRequiredLimit) return limit;
|
|
28676
28676
|
hasRequiredLimit = 1;
|
|
28677
|
-
(function (exports) {
|
|
28678
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28679
|
-
exports.formatLimitDefinition = void 0;
|
|
28677
|
+
(function (exports$1) {
|
|
28678
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
28679
|
+
exports$1.formatLimitDefinition = void 0;
|
|
28680
28680
|
const ajv_1 = requireAjv();
|
|
28681
28681
|
const codegen_1 = requireCodegen();
|
|
28682
28682
|
const ops = codegen_1.operators;
|
|
@@ -28690,7 +28690,7 @@ function requireLimit () {
|
|
|
28690
28690
|
message: ({ keyword, schemaCode }) => (0, codegen_1.str) `should be ${KWDs[keyword].okStr} ${schemaCode}`,
|
|
28691
28691
|
params: ({ keyword, schemaCode }) => (0, codegen_1._) `{comparison: ${KWDs[keyword].okStr}, limit: ${schemaCode}}`,
|
|
28692
28692
|
};
|
|
28693
|
-
exports.formatLimitDefinition = {
|
|
28693
|
+
exports$1.formatLimitDefinition = {
|
|
28694
28694
|
keyword: Object.keys(KWDs),
|
|
28695
28695
|
type: "string",
|
|
28696
28696
|
schemaType: "string",
|
|
@@ -28738,10 +28738,10 @@ function requireLimit () {
|
|
|
28738
28738
|
dependencies: ["format"],
|
|
28739
28739
|
};
|
|
28740
28740
|
const formatLimitPlugin = (ajv) => {
|
|
28741
|
-
ajv.addKeyword(exports.formatLimitDefinition);
|
|
28741
|
+
ajv.addKeyword(exports$1.formatLimitDefinition);
|
|
28742
28742
|
return ajv;
|
|
28743
28743
|
};
|
|
28744
|
-
exports.default = formatLimitPlugin;
|
|
28744
|
+
exports$1.default = formatLimitPlugin;
|
|
28745
28745
|
} (limit));
|
|
28746
28746
|
return limit;
|
|
28747
28747
|
}
|
|
@@ -28751,8 +28751,8 @@ var hasRequiredDist$c;
|
|
|
28751
28751
|
function requireDist$c () {
|
|
28752
28752
|
if (hasRequiredDist$c) return dist$c.exports;
|
|
28753
28753
|
hasRequiredDist$c = 1;
|
|
28754
|
-
(function (module, exports) {
|
|
28755
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28754
|
+
(function (module, exports$1) {
|
|
28755
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
28756
28756
|
const formats_1 = requireFormats();
|
|
28757
28757
|
const limit_1 = requireLimit();
|
|
28758
28758
|
const codegen_1 = requireCodegen();
|
|
@@ -28784,9 +28784,9 @@ function requireDist$c () {
|
|
|
28784
28784
|
for (const f of list)
|
|
28785
28785
|
ajv.addFormat(f, fs[f]);
|
|
28786
28786
|
}
|
|
28787
|
-
module.exports = exports = formatsPlugin;
|
|
28788
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28789
|
-
exports.default = formatsPlugin;
|
|
28787
|
+
module.exports = exports$1 = formatsPlugin;
|
|
28788
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
28789
|
+
exports$1.default = formatsPlugin;
|
|
28790
28790
|
} (dist$c, dist$c.exports));
|
|
28791
28791
|
return dist$c.exports;
|
|
28792
28792
|
}
|
|
@@ -33676,7 +33676,7 @@ function mergeUint8Arrays(items) {
|
|
|
33676
33676
|
* Copyright 2025 Google Inc.
|
|
33677
33677
|
* SPDX-License-Identifier: Apache-2.0
|
|
33678
33678
|
*/
|
|
33679
|
-
const packageVersion = '24.
|
|
33679
|
+
const packageVersion = '24.30.0';
|
|
33680
33680
|
|
|
33681
33681
|
/**
|
|
33682
33682
|
* @license
|
|
@@ -42370,7 +42370,10 @@ class CdpHTTPRequest extends HTTPRequest {
|
|
|
42370
42370
|
this._redirectChain = redirectChain;
|
|
42371
42371
|
this.#initiator = data.initiator;
|
|
42372
42372
|
this.interception.enabled = allowInterception;
|
|
42373
|
-
|
|
42373
|
+
this.updateHeaders(data.request.headers);
|
|
42374
|
+
}
|
|
42375
|
+
updateHeaders(headers) {
|
|
42376
|
+
for (const [key, value] of Object.entries(headers)) {
|
|
42374
42377
|
this.#headers[key.toLowerCase()] = value;
|
|
42375
42378
|
}
|
|
42376
42379
|
}
|
|
@@ -42671,16 +42674,24 @@ class NetworkEventManager {
|
|
|
42671
42674
|
#requestWillBeSentMap = new Map();
|
|
42672
42675
|
#requestPausedMap = new Map();
|
|
42673
42676
|
#httpRequestsMap = new Map();
|
|
42677
|
+
#requestWillBeSentExtraInfoMap = new Map();
|
|
42674
42678
|
#responseReceivedExtraInfoMap = new Map();
|
|
42675
42679
|
#queuedRedirectInfoMap = new Map();
|
|
42676
42680
|
#queuedEventGroupMap = new Map();
|
|
42677
42681
|
forget(networkRequestId) {
|
|
42678
42682
|
this.#requestWillBeSentMap.delete(networkRequestId);
|
|
42679
42683
|
this.#requestPausedMap.delete(networkRequestId);
|
|
42684
|
+
this.#requestWillBeSentExtraInfoMap.delete(networkRequestId);
|
|
42680
42685
|
this.#queuedEventGroupMap.delete(networkRequestId);
|
|
42681
42686
|
this.#queuedRedirectInfoMap.delete(networkRequestId);
|
|
42682
42687
|
this.#responseReceivedExtraInfoMap.delete(networkRequestId);
|
|
42683
42688
|
}
|
|
42689
|
+
requestExtraInfo(networkRequestId) {
|
|
42690
|
+
if (!this.#requestWillBeSentExtraInfoMap.has(networkRequestId)) {
|
|
42691
|
+
this.#requestWillBeSentExtraInfoMap.set(networkRequestId, []);
|
|
42692
|
+
}
|
|
42693
|
+
return this.#requestWillBeSentExtraInfoMap.get(networkRequestId);
|
|
42694
|
+
}
|
|
42684
42695
|
responseExtraInfo(networkRequestId) {
|
|
42685
42696
|
if (!this.#responseReceivedExtraInfoMap.has(networkRequestId)) {
|
|
42686
42697
|
this.#responseReceivedExtraInfoMap.set(networkRequestId, []);
|
|
@@ -42791,6 +42802,7 @@ class NetworkManager extends EventEmitter {
|
|
|
42791
42802
|
['Fetch.requestPaused', this.#onRequestPaused],
|
|
42792
42803
|
['Fetch.authRequired', this.#onAuthRequired],
|
|
42793
42804
|
['Network.requestWillBeSent', this.#onRequestWillBeSent],
|
|
42805
|
+
['Network.requestWillBeSentExtraInfo', this.#onRequestWillBeSentExtraInfo],
|
|
42794
42806
|
['Network.requestServedFromCache', this.#onRequestServedFromCache],
|
|
42795
42807
|
['Network.responseReceived', this.#onResponseReceived],
|
|
42796
42808
|
['Network.loadingFinished', this.#onLoadingFinished],
|
|
@@ -43128,17 +43140,38 @@ class NetworkManager extends EventEmitter {
|
|
|
43128
43140
|
if (request) {
|
|
43129
43141
|
this.#handleRequestRedirect(client, request, event.redirectResponse, redirectResponseExtraInfo);
|
|
43130
43142
|
redirectChain = request._redirectChain;
|
|
43143
|
+
const extraInfo = this.#networkEventManager
|
|
43144
|
+
.requestExtraInfo(event.requestId)
|
|
43145
|
+
.shift();
|
|
43146
|
+
if (extraInfo) {
|
|
43147
|
+
request.updateHeaders(extraInfo.headers);
|
|
43148
|
+
}
|
|
43131
43149
|
}
|
|
43132
43150
|
}
|
|
43133
43151
|
const frame = event.frameId
|
|
43134
43152
|
? this.#frameManager.frame(event.frameId)
|
|
43135
43153
|
: null;
|
|
43136
43154
|
const request = new CdpHTTPRequest(client, frame, fetchRequestId, this.#userRequestInterceptionEnabled, event, redirectChain);
|
|
43155
|
+
const extraInfo = this.#networkEventManager
|
|
43156
|
+
.requestExtraInfo(event.requestId)
|
|
43157
|
+
.shift();
|
|
43158
|
+
if (extraInfo) {
|
|
43159
|
+
request.updateHeaders(extraInfo.headers);
|
|
43160
|
+
}
|
|
43137
43161
|
request._fromMemoryCache = fromMemoryCache;
|
|
43138
43162
|
this.#networkEventManager.storeRequest(event.requestId, request);
|
|
43139
43163
|
this.emit(NetworkManagerEvent.Request, request);
|
|
43140
43164
|
void request.finalizeInterceptions();
|
|
43141
43165
|
}
|
|
43166
|
+
#onRequestWillBeSentExtraInfo(_client, event) {
|
|
43167
|
+
const request = this.#networkEventManager.getRequest(event.requestId);
|
|
43168
|
+
if (request) {
|
|
43169
|
+
request.updateHeaders(event.headers);
|
|
43170
|
+
}
|
|
43171
|
+
else {
|
|
43172
|
+
this.#networkEventManager.requestExtraInfo(event.requestId).push(event);
|
|
43173
|
+
}
|
|
43174
|
+
}
|
|
43142
43175
|
#onRequestServedFromCache(client, event) {
|
|
43143
43176
|
const requestWillBeSentEvent = this.#networkEventManager.getRequestWillBeSent(event.requestId);
|
|
43144
43177
|
let request = this.#networkEventManager.getRequest(event.requestId);
|
|
@@ -48283,9 +48316,9 @@ class Puppeteer {
|
|
|
48283
48316
|
* SPDX-License-Identifier: Apache-2.0
|
|
48284
48317
|
*/
|
|
48285
48318
|
const PUPPETEER_REVISIONS = Object.freeze({
|
|
48286
|
-
chrome: '142.0.7444.
|
|
48287
|
-
'chrome-headless-shell': '142.0.7444.
|
|
48288
|
-
firefox: '
|
|
48319
|
+
chrome: '142.0.7444.162',
|
|
48320
|
+
'chrome-headless-shell': '142.0.7444.162',
|
|
48321
|
+
firefox: 'stable_145.0',
|
|
48289
48322
|
});
|
|
48290
48323
|
|
|
48291
48324
|
/**
|
|
@@ -48387,19 +48420,19 @@ var hasRequiredRe;
|
|
|
48387
48420
|
function requireRe () {
|
|
48388
48421
|
if (hasRequiredRe) return re.exports;
|
|
48389
48422
|
hasRequiredRe = 1;
|
|
48390
|
-
(function (module, exports) {
|
|
48423
|
+
(function (module, exports$1) {
|
|
48391
48424
|
const {
|
|
48392
48425
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
48393
48426
|
MAX_SAFE_BUILD_LENGTH,
|
|
48394
48427
|
MAX_LENGTH,
|
|
48395
48428
|
} = requireConstants$4();
|
|
48396
48429
|
const debug = requireDebug$1();
|
|
48397
|
-
exports = module.exports = {};
|
|
48398
|
-
const re = exports.re = [];
|
|
48399
|
-
const safeRe = exports.safeRe = [];
|
|
48400
|
-
const src = exports.src = [];
|
|
48401
|
-
const safeSrc = exports.safeSrc = [];
|
|
48402
|
-
const t = exports.t = {};
|
|
48430
|
+
exports$1 = module.exports = {};
|
|
48431
|
+
const re = exports$1.re = [];
|
|
48432
|
+
const safeRe = exports$1.safeRe = [];
|
|
48433
|
+
const src = exports$1.src = [];
|
|
48434
|
+
const safeSrc = exports$1.safeSrc = [];
|
|
48435
|
+
const t = exports$1.t = {};
|
|
48403
48436
|
let R = 0;
|
|
48404
48437
|
const LETTERDASHNUMBER = '[a-zA-Z0-9-]';
|
|
48405
48438
|
const safeRegexReplacements = [
|
|
@@ -48483,19 +48516,19 @@ function requireRe () {
|
|
|
48483
48516
|
createToken('COERCERTLFULL', src[t.COERCEFULL], true);
|
|
48484
48517
|
createToken('LONETILDE', '(?:~>?)');
|
|
48485
48518
|
createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true);
|
|
48486
|
-
exports.tildeTrimReplace = '$1~';
|
|
48519
|
+
exports$1.tildeTrimReplace = '$1~';
|
|
48487
48520
|
createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
|
|
48488
48521
|
createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
48489
48522
|
createToken('LONECARET', '(?:\\^)');
|
|
48490
48523
|
createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true);
|
|
48491
|
-
exports.caretTrimReplace = '$1^';
|
|
48524
|
+
exports$1.caretTrimReplace = '$1^';
|
|
48492
48525
|
createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
|
|
48493
48526
|
createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
48494
48527
|
createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
|
|
48495
48528
|
createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
|
|
48496
48529
|
createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT]
|
|
48497
48530
|
}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
|
|
48498
|
-
exports.comparatorTrimReplace = '$1$2$3';
|
|
48531
|
+
exports$1.comparatorTrimReplace = '$1$2$3';
|
|
48499
48532
|
createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` +
|
|
48500
48533
|
`\\s+-\\s+` +
|
|
48501
48534
|
`(${src[t.XRANGEPLAIN]})` +
|
|
@@ -51648,7 +51681,7 @@ var hasRequiredDist$b;
|
|
|
51648
51681
|
function requireDist$b () {
|
|
51649
51682
|
if (hasRequiredDist$b) return dist$a;
|
|
51650
51683
|
hasRequiredDist$b = 1;
|
|
51651
|
-
(function (exports) {
|
|
51684
|
+
(function (exports$1) {
|
|
51652
51685
|
var __createBinding = (dist$a && dist$a.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
51653
51686
|
if (k2 === undefined) k2 = k;
|
|
51654
51687
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -51672,15 +51705,15 @@ function requireDist$b () {
|
|
|
51672
51705
|
__setModuleDefault(result, mod);
|
|
51673
51706
|
return result;
|
|
51674
51707
|
};
|
|
51675
|
-
var __exportStar = (dist$a && dist$a.__exportStar) || function(m, exports) {
|
|
51676
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
51708
|
+
var __exportStar = (dist$a && dist$a.__exportStar) || function(m, exports$1) {
|
|
51709
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
|
|
51677
51710
|
};
|
|
51678
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51679
|
-
exports.Agent = void 0;
|
|
51711
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
51712
|
+
exports$1.Agent = void 0;
|
|
51680
51713
|
const net = __importStar(require$$0$4);
|
|
51681
51714
|
const http = __importStar(require$$0$3);
|
|
51682
51715
|
const https_1 = require$$1$1;
|
|
51683
|
-
__exportStar(requireHelpers$2(), exports);
|
|
51716
|
+
__exportStar(requireHelpers$2(), exports$1);
|
|
51684
51717
|
const INTERNAL = Symbol('AgentBaseInternalState');
|
|
51685
51718
|
class Agent extends http.Agent {
|
|
51686
51719
|
constructor(opts) {
|
|
@@ -51790,7 +51823,7 @@ function requireDist$b () {
|
|
|
51790
51823
|
}
|
|
51791
51824
|
}
|
|
51792
51825
|
}
|
|
51793
|
-
exports.Agent = Agent;
|
|
51826
|
+
exports$1.Agent = Agent;
|
|
51794
51827
|
} (dist$a));
|
|
51795
51828
|
return dist$a;
|
|
51796
51829
|
}
|
|
@@ -53235,6 +53268,24 @@ function requireIpv4 () {
|
|
|
53235
53268
|
static fromBigInt(bigInt) {
|
|
53236
53269
|
return Address4.fromHex(bigInt.toString(16));
|
|
53237
53270
|
}
|
|
53271
|
+
static fromByteArray(bytes) {
|
|
53272
|
+
if (bytes.length !== 4) {
|
|
53273
|
+
throw new address_error_1.AddressError('IPv4 addresses require exactly 4 bytes');
|
|
53274
|
+
}
|
|
53275
|
+
for (let i = 0; i < bytes.length; i++) {
|
|
53276
|
+
if (!Number.isInteger(bytes[i]) || bytes[i] < 0 || bytes[i] > 255) {
|
|
53277
|
+
throw new address_error_1.AddressError('All bytes must be integers between 0 and 255');
|
|
53278
|
+
}
|
|
53279
|
+
}
|
|
53280
|
+
return this.fromUnsignedByteArray(bytes);
|
|
53281
|
+
}
|
|
53282
|
+
static fromUnsignedByteArray(bytes) {
|
|
53283
|
+
if (bytes.length !== 4) {
|
|
53284
|
+
throw new address_error_1.AddressError('IPv4 addresses require exactly 4 bytes');
|
|
53285
|
+
}
|
|
53286
|
+
const address = bytes.join('.');
|
|
53287
|
+
return new Address4(address);
|
|
53288
|
+
}
|
|
53238
53289
|
mask(mask) {
|
|
53239
53290
|
if (mask === undefined) {
|
|
53240
53291
|
mask = this.subnetMask;
|
|
@@ -54090,7 +54141,7 @@ var hasRequiredIpAddress;
|
|
|
54090
54141
|
function requireIpAddress () {
|
|
54091
54142
|
if (hasRequiredIpAddress) return ipAddress;
|
|
54092
54143
|
hasRequiredIpAddress = 1;
|
|
54093
|
-
(function (exports) {
|
|
54144
|
+
(function (exports$1) {
|
|
54094
54145
|
var __createBinding = (ipAddress && ipAddress.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
54095
54146
|
if (k2 === undefined) k2 = k;
|
|
54096
54147
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -54114,16 +54165,16 @@ function requireIpAddress () {
|
|
|
54114
54165
|
__setModuleDefault(result, mod);
|
|
54115
54166
|
return result;
|
|
54116
54167
|
};
|
|
54117
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54118
|
-
exports.v6 = exports.AddressError = exports.Address6 = exports.Address4 = void 0;
|
|
54168
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
54169
|
+
exports$1.v6 = exports$1.AddressError = exports$1.Address6 = exports$1.Address4 = void 0;
|
|
54119
54170
|
var ipv4_1 = requireIpv4();
|
|
54120
|
-
Object.defineProperty(exports, "Address4", { enumerable: true, get: function () { return ipv4_1.Address4; } });
|
|
54171
|
+
Object.defineProperty(exports$1, "Address4", { enumerable: true, get: function () { return ipv4_1.Address4; } });
|
|
54121
54172
|
var ipv6_1 = requireIpv6();
|
|
54122
|
-
Object.defineProperty(exports, "Address6", { enumerable: true, get: function () { return ipv6_1.Address6; } });
|
|
54173
|
+
Object.defineProperty(exports$1, "Address6", { enumerable: true, get: function () { return ipv6_1.Address6; } });
|
|
54123
54174
|
var address_error_1 = requireAddressError();
|
|
54124
|
-
Object.defineProperty(exports, "AddressError", { enumerable: true, get: function () { return address_error_1.AddressError; } });
|
|
54175
|
+
Object.defineProperty(exports$1, "AddressError", { enumerable: true, get: function () { return address_error_1.AddressError; } });
|
|
54125
54176
|
const helpers = __importStar(requireHelpers$1());
|
|
54126
|
-
exports.v6 = { helpers };
|
|
54177
|
+
exports$1.v6 = { helpers };
|
|
54127
54178
|
} (ipAddress));
|
|
54128
54179
|
return ipAddress;
|
|
54129
54180
|
}
|
|
@@ -54314,7 +54365,7 @@ var hasRequiredSocksclient;
|
|
|
54314
54365
|
function requireSocksclient () {
|
|
54315
54366
|
if (hasRequiredSocksclient) return socksclient;
|
|
54316
54367
|
hasRequiredSocksclient = 1;
|
|
54317
|
-
(function (exports) {
|
|
54368
|
+
(function (exports$1) {
|
|
54318
54369
|
var __awaiter = (socksclient && socksclient.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
54319
54370
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
54320
54371
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -54324,8 +54375,8 @@ function requireSocksclient () {
|
|
|
54324
54375
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
54325
54376
|
});
|
|
54326
54377
|
};
|
|
54327
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54328
|
-
exports.SocksClientError = exports.SocksClient = void 0;
|
|
54378
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
54379
|
+
exports$1.SocksClientError = exports$1.SocksClient = void 0;
|
|
54329
54380
|
const events_1 = require$$0$5;
|
|
54330
54381
|
const net = require$$0$4;
|
|
54331
54382
|
const smart_buffer_1 = requireSmartbuffer();
|
|
@@ -54333,7 +54384,7 @@ function requireSocksclient () {
|
|
|
54333
54384
|
const helpers_1 = requireHelpers();
|
|
54334
54385
|
const receivebuffer_1 = requireReceivebuffer();
|
|
54335
54386
|
const util_1 = requireUtil$2();
|
|
54336
|
-
Object.defineProperty(exports, "SocksClientError", { enumerable: true, get: function () { return util_1.SocksClientError; } });
|
|
54387
|
+
Object.defineProperty(exports$1, "SocksClientError", { enumerable: true, get: function () { return util_1.SocksClientError; } });
|
|
54337
54388
|
const ip_address_1 = requireIpAddress();
|
|
54338
54389
|
class SocksClient extends events_1.EventEmitter {
|
|
54339
54390
|
constructor(options) {
|
|
@@ -54925,7 +54976,7 @@ function requireSocksclient () {
|
|
|
54925
54976
|
return Object.assign({}, this.options);
|
|
54926
54977
|
}
|
|
54927
54978
|
}
|
|
54928
|
-
exports.SocksClient = SocksClient;
|
|
54979
|
+
exports$1.SocksClient = SocksClient;
|
|
54929
54980
|
} (socksclient));
|
|
54930
54981
|
return socksclient;
|
|
54931
54982
|
}
|
|
@@ -54935,7 +54986,7 @@ var hasRequiredBuild;
|
|
|
54935
54986
|
function requireBuild () {
|
|
54936
54987
|
if (hasRequiredBuild) return build;
|
|
54937
54988
|
hasRequiredBuild = 1;
|
|
54938
|
-
(function (exports) {
|
|
54989
|
+
(function (exports$1) {
|
|
54939
54990
|
var __createBinding = (build && build.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
54940
54991
|
if (k2 === undefined) k2 = k;
|
|
54941
54992
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -54947,11 +54998,11 @@ function requireBuild () {
|
|
|
54947
54998
|
if (k2 === undefined) k2 = k;
|
|
54948
54999
|
o[k2] = m[k];
|
|
54949
55000
|
}));
|
|
54950
|
-
var __exportStar = (build && build.__exportStar) || function(m, exports) {
|
|
54951
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
55001
|
+
var __exportStar = (build && build.__exportStar) || function(m, exports$1) {
|
|
55002
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
|
|
54952
55003
|
};
|
|
54953
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54954
|
-
__exportStar(requireSocksclient(), exports);
|
|
55004
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
55005
|
+
__exportStar(requireSocksclient(), exports$1);
|
|
54955
55006
|
} (build));
|
|
54956
55007
|
return build;
|
|
54957
55008
|
}
|
|
@@ -56992,7 +57043,7 @@ var hasRequiredDist$6;
|
|
|
56992
57043
|
function requireDist$6 () {
|
|
56993
57044
|
if (hasRequiredDist$6) return dist$3;
|
|
56994
57045
|
hasRequiredDist$6 = 1;
|
|
56995
|
-
(function (exports) {
|
|
57046
|
+
(function (exports$1) {
|
|
56996
57047
|
var __createBinding = (dist$3 && dist$3.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
56997
57048
|
if (k2 === undefined) k2 = k;
|
|
56998
57049
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -57004,19 +57055,19 @@ function requireDist$6 () {
|
|
|
57004
57055
|
if (k2 === undefined) k2 = k;
|
|
57005
57056
|
o[k2] = m[k];
|
|
57006
57057
|
}));
|
|
57007
|
-
var __exportStar = (dist$3 && dist$3.__exportStar) || function(m, exports) {
|
|
57008
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
57058
|
+
var __exportStar = (dist$3 && dist$3.__exportStar) || function(m, exports$1) {
|
|
57059
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
|
|
57009
57060
|
};
|
|
57010
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57011
|
-
exports.enterPassiveModeIPv6 = exports.enterPassiveModeIPv4 = void 0;
|
|
57012
|
-
__exportStar(requireClient(), exports);
|
|
57013
|
-
__exportStar(requireFtpContext(), exports);
|
|
57014
|
-
__exportStar(requireFileInfo(), exports);
|
|
57015
|
-
__exportStar(requireParseList(), exports);
|
|
57016
|
-
__exportStar(requireStringEncoding(), exports);
|
|
57061
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
57062
|
+
exports$1.enterPassiveModeIPv6 = exports$1.enterPassiveModeIPv4 = void 0;
|
|
57063
|
+
__exportStar(requireClient(), exports$1);
|
|
57064
|
+
__exportStar(requireFtpContext(), exports$1);
|
|
57065
|
+
__exportStar(requireFileInfo(), exports$1);
|
|
57066
|
+
__exportStar(requireParseList(), exports$1);
|
|
57067
|
+
__exportStar(requireStringEncoding(), exports$1);
|
|
57017
57068
|
var transfer_1 = requireTransfer();
|
|
57018
|
-
Object.defineProperty(exports, "enterPassiveModeIPv4", { enumerable: true, get: function () { return transfer_1.enterPassiveModeIPv4; } });
|
|
57019
|
-
Object.defineProperty(exports, "enterPassiveModeIPv6", { enumerable: true, get: function () { return transfer_1.enterPassiveModeIPv6; } });
|
|
57069
|
+
Object.defineProperty(exports$1, "enterPassiveModeIPv4", { enumerable: true, get: function () { return transfer_1.enterPassiveModeIPv4; } });
|
|
57070
|
+
Object.defineProperty(exports$1, "enterPassiveModeIPv6", { enumerable: true, get: function () { return transfer_1.enterPassiveModeIPv6; } });
|
|
57020
57071
|
} (dist$3));
|
|
57021
57072
|
return dist$3;
|
|
57022
57073
|
}
|
|
@@ -57137,12 +57188,12 @@ var hasRequiredHttp;
|
|
|
57137
57188
|
function requireHttp () {
|
|
57138
57189
|
if (hasRequiredHttp) return http;
|
|
57139
57190
|
hasRequiredHttp = 1;
|
|
57140
|
-
(function (exports) {
|
|
57191
|
+
(function (exports$1) {
|
|
57141
57192
|
var __importDefault = (http && http.__importDefault) || function (mod) {
|
|
57142
57193
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
57143
57194
|
};
|
|
57144
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57145
|
-
exports.http = void 0;
|
|
57195
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
57196
|
+
exports$1.http = void 0;
|
|
57146
57197
|
const http_1 = __importDefault(require$$0$3);
|
|
57147
57198
|
const https_1 = __importDefault(require$$1$1);
|
|
57148
57199
|
const events_1 = require$$0$5;
|
|
@@ -57212,7 +57263,7 @@ function requireHttp () {
|
|
|
57212
57263
|
if (newUri.protocol !== url.protocol) {
|
|
57213
57264
|
opts.http = newUri.protocol === 'https:' ? https_1.default : undefined;
|
|
57214
57265
|
}
|
|
57215
|
-
return (0, exports.http)(newUri, opts);
|
|
57266
|
+
return (0, exports$1.http)(newUri, opts);
|
|
57216
57267
|
}
|
|
57217
57268
|
}
|
|
57218
57269
|
if (type !== 2) {
|
|
@@ -57230,7 +57281,7 @@ function requireHttp () {
|
|
|
57230
57281
|
}
|
|
57231
57282
|
return res;
|
|
57232
57283
|
};
|
|
57233
|
-
exports.http = http$1;
|
|
57284
|
+
exports$1.http = http$1;
|
|
57234
57285
|
function isFresh(cache) {
|
|
57235
57286
|
let fresh = false;
|
|
57236
57287
|
let expires = parseInt(cache.headers.expires || '', 10);
|
|
@@ -57316,12 +57367,12 @@ var hasRequiredDist$5;
|
|
|
57316
57367
|
function requireDist$5 () {
|
|
57317
57368
|
if (hasRequiredDist$5) return dist$5;
|
|
57318
57369
|
hasRequiredDist$5 = 1;
|
|
57319
|
-
(function (exports) {
|
|
57370
|
+
(function (exports$1) {
|
|
57320
57371
|
var __importDefault = (dist$5 && dist$5.__importDefault) || function (mod) {
|
|
57321
57372
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
57322
57373
|
};
|
|
57323
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57324
|
-
exports.getUri = exports.isValidProtocol = exports.protocols = void 0;
|
|
57374
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
57375
|
+
exports$1.getUri = exports$1.isValidProtocol = exports$1.protocols = void 0;
|
|
57325
57376
|
const debug_1 = __importDefault(requireSrc());
|
|
57326
57377
|
const data_1 = requireData();
|
|
57327
57378
|
const file_1 = requireFile();
|
|
@@ -57329,18 +57380,18 @@ function requireDist$5 () {
|
|
|
57329
57380
|
const http_1 = requireHttp();
|
|
57330
57381
|
const https_1 = requireHttps();
|
|
57331
57382
|
const debug = (0, debug_1.default)('get-uri');
|
|
57332
|
-
exports.protocols = {
|
|
57383
|
+
exports$1.protocols = {
|
|
57333
57384
|
data: data_1.data,
|
|
57334
57385
|
file: file_1.file,
|
|
57335
57386
|
ftp: ftp_1.ftp,
|
|
57336
57387
|
http: http_1.http,
|
|
57337
57388
|
https: https_1.https,
|
|
57338
57389
|
};
|
|
57339
|
-
const VALID_PROTOCOLS = new Set(Object.keys(exports.protocols));
|
|
57390
|
+
const VALID_PROTOCOLS = new Set(Object.keys(exports$1.protocols));
|
|
57340
57391
|
function isValidProtocol(p) {
|
|
57341
57392
|
return VALID_PROTOCOLS.has(p);
|
|
57342
57393
|
}
|
|
57343
|
-
exports.isValidProtocol = isValidProtocol;
|
|
57394
|
+
exports$1.isValidProtocol = isValidProtocol;
|
|
57344
57395
|
async function getUri(uri, opts) {
|
|
57345
57396
|
debug('getUri(%o)', uri);
|
|
57346
57397
|
if (!uri) {
|
|
@@ -57351,10 +57402,10 @@ function requireDist$5 () {
|
|
|
57351
57402
|
if (!isValidProtocol(protocol)) {
|
|
57352
57403
|
throw new TypeError(`Unsupported protocol "${protocol}" specified in URI: "${uri}"`);
|
|
57353
57404
|
}
|
|
57354
|
-
const getter = exports.protocols[protocol];
|
|
57405
|
+
const getter = exports$1.protocols[protocol];
|
|
57355
57406
|
return getter(url, opts);
|
|
57356
57407
|
}
|
|
57357
|
-
exports.getUri = getUri;
|
|
57408
|
+
exports$1.getUri = getUri;
|
|
57358
57409
|
} (dist$5));
|
|
57359
57410
|
return dist$5;
|
|
57360
57411
|
}
|
|
@@ -57396,8 +57447,8 @@ var hasRequiredEstraverse;
|
|
|
57396
57447
|
function requireEstraverse () {
|
|
57397
57448
|
if (hasRequiredEstraverse) return estraverse;
|
|
57398
57449
|
hasRequiredEstraverse = 1;
|
|
57399
|
-
(function (exports) {
|
|
57400
|
-
(function clone(exports) {
|
|
57450
|
+
(function (exports$1) {
|
|
57451
|
+
(function clone(exports$1) {
|
|
57401
57452
|
var Syntax,
|
|
57402
57453
|
VisitorOption,
|
|
57403
57454
|
VisitorKeys,
|
|
@@ -58016,16 +58067,16 @@ function requireEstraverse () {
|
|
|
58016
58067
|
});
|
|
58017
58068
|
return tree;
|
|
58018
58069
|
}
|
|
58019
|
-
exports.Syntax = Syntax;
|
|
58020
|
-
exports.traverse = traverse;
|
|
58021
|
-
exports.replace = replace;
|
|
58022
|
-
exports.attachComments = attachComments;
|
|
58023
|
-
exports.VisitorKeys = VisitorKeys;
|
|
58024
|
-
exports.VisitorOption = VisitorOption;
|
|
58025
|
-
exports.Controller = Controller;
|
|
58026
|
-
exports.cloneEnvironment = function () { return clone({}); };
|
|
58027
|
-
return exports;
|
|
58028
|
-
}(exports));
|
|
58070
|
+
exports$1.Syntax = Syntax;
|
|
58071
|
+
exports$1.traverse = traverse;
|
|
58072
|
+
exports$1.replace = replace;
|
|
58073
|
+
exports$1.attachComments = attachComments;
|
|
58074
|
+
exports$1.VisitorKeys = VisitorKeys;
|
|
58075
|
+
exports$1.VisitorOption = VisitorOption;
|
|
58076
|
+
exports$1.Controller = Controller;
|
|
58077
|
+
exports$1.cloneEnvironment = function () { return clone({}); };
|
|
58078
|
+
return exports$1;
|
|
58079
|
+
}(exports$1));
|
|
58029
58080
|
} (estraverse));
|
|
58030
58081
|
return estraverse;
|
|
58031
58082
|
}
|
|
@@ -58632,7 +58683,7 @@ var hasRequiredUtil$1;
|
|
|
58632
58683
|
function requireUtil$1 () {
|
|
58633
58684
|
if (hasRequiredUtil$1) return util$1;
|
|
58634
58685
|
hasRequiredUtil$1 = 1;
|
|
58635
|
-
(function (exports) {
|
|
58686
|
+
(function (exports$1) {
|
|
58636
58687
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
58637
58688
|
if (aName in aArgs) {
|
|
58638
58689
|
return aArgs[aName];
|
|
@@ -58642,7 +58693,7 @@ function requireUtil$1 () {
|
|
|
58642
58693
|
throw new Error('"' + aName + '" is a required argument.');
|
|
58643
58694
|
}
|
|
58644
58695
|
}
|
|
58645
|
-
exports.getArg = getArg;
|
|
58696
|
+
exports$1.getArg = getArg;
|
|
58646
58697
|
var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
|
|
58647
58698
|
var dataUrlRegexp = /^data:.+\,.+$/;
|
|
58648
58699
|
function urlParse(aUrl) {
|
|
@@ -58658,7 +58709,7 @@ function requireUtil$1 () {
|
|
|
58658
58709
|
path: match[5]
|
|
58659
58710
|
};
|
|
58660
58711
|
}
|
|
58661
|
-
exports.urlParse = urlParse;
|
|
58712
|
+
exports$1.urlParse = urlParse;
|
|
58662
58713
|
function urlGenerate(aParsedUrl) {
|
|
58663
58714
|
var url = '';
|
|
58664
58715
|
if (aParsedUrl.scheme) {
|
|
@@ -58679,7 +58730,7 @@ function requireUtil$1 () {
|
|
|
58679
58730
|
}
|
|
58680
58731
|
return url;
|
|
58681
58732
|
}
|
|
58682
|
-
exports.urlGenerate = urlGenerate;
|
|
58733
|
+
exports$1.urlGenerate = urlGenerate;
|
|
58683
58734
|
function normalize(aPath) {
|
|
58684
58735
|
var path = aPath;
|
|
58685
58736
|
var url = urlParse(aPath);
|
|
@@ -58689,7 +58740,7 @@ function requireUtil$1 () {
|
|
|
58689
58740
|
}
|
|
58690
58741
|
path = url.path;
|
|
58691
58742
|
}
|
|
58692
|
-
var isAbsolute = exports.isAbsolute(path);
|
|
58743
|
+
var isAbsolute = exports$1.isAbsolute(path);
|
|
58693
58744
|
var parts = path.split(/\/+/);
|
|
58694
58745
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
|
58695
58746
|
part = parts[i];
|
|
@@ -58717,7 +58768,7 @@ function requireUtil$1 () {
|
|
|
58717
58768
|
}
|
|
58718
58769
|
return path;
|
|
58719
58770
|
}
|
|
58720
|
-
exports.normalize = normalize;
|
|
58771
|
+
exports$1.normalize = normalize;
|
|
58721
58772
|
function join(aRoot, aPath) {
|
|
58722
58773
|
if (aRoot === "") {
|
|
58723
58774
|
aRoot = ".";
|
|
@@ -58752,8 +58803,8 @@ function requireUtil$1 () {
|
|
|
58752
58803
|
}
|
|
58753
58804
|
return joined;
|
|
58754
58805
|
}
|
|
58755
|
-
exports.join = join;
|
|
58756
|
-
exports.isAbsolute = function (aPath) {
|
|
58806
|
+
exports$1.join = join;
|
|
58807
|
+
exports$1.isAbsolute = function (aPath) {
|
|
58757
58808
|
return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
|
|
58758
58809
|
};
|
|
58759
58810
|
function relative(aRoot, aPath) {
|
|
@@ -58775,7 +58826,7 @@ function requireUtil$1 () {
|
|
|
58775
58826
|
}
|
|
58776
58827
|
return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
|
|
58777
58828
|
}
|
|
58778
|
-
exports.relative = relative;
|
|
58829
|
+
exports$1.relative = relative;
|
|
58779
58830
|
var supportsNullProto = (function () {
|
|
58780
58831
|
var obj = Object.create(null);
|
|
58781
58832
|
return !('__proto__' in obj);
|
|
@@ -58789,14 +58840,14 @@ function requireUtil$1 () {
|
|
|
58789
58840
|
}
|
|
58790
58841
|
return aStr;
|
|
58791
58842
|
}
|
|
58792
|
-
exports.toSetString = supportsNullProto ? identity : toSetString;
|
|
58843
|
+
exports$1.toSetString = supportsNullProto ? identity : toSetString;
|
|
58793
58844
|
function fromSetString(aStr) {
|
|
58794
58845
|
if (isProtoString(aStr)) {
|
|
58795
58846
|
return aStr.slice(1);
|
|
58796
58847
|
}
|
|
58797
58848
|
return aStr;
|
|
58798
58849
|
}
|
|
58799
|
-
exports.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
58850
|
+
exports$1.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
58800
58851
|
function isProtoString(s) {
|
|
58801
58852
|
if (!s) {
|
|
58802
58853
|
return false;
|
|
@@ -58846,7 +58897,7 @@ function requireUtil$1 () {
|
|
|
58846
58897
|
}
|
|
58847
58898
|
return strcmp(mappingA.name, mappingB.name);
|
|
58848
58899
|
}
|
|
58849
|
-
exports.compareByOriginalPositions = compareByOriginalPositions;
|
|
58900
|
+
exports$1.compareByOriginalPositions = compareByOriginalPositions;
|
|
58850
58901
|
function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
|
|
58851
58902
|
var cmp = mappingA.generatedLine - mappingB.generatedLine;
|
|
58852
58903
|
if (cmp !== 0) {
|
|
@@ -58870,7 +58921,7 @@ function requireUtil$1 () {
|
|
|
58870
58921
|
}
|
|
58871
58922
|
return strcmp(mappingA.name, mappingB.name);
|
|
58872
58923
|
}
|
|
58873
|
-
exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
58924
|
+
exports$1.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
58874
58925
|
function strcmp(aStr1, aStr2) {
|
|
58875
58926
|
if (aStr1 === aStr2) {
|
|
58876
58927
|
return 0;
|
|
@@ -58909,11 +58960,11 @@ function requireUtil$1 () {
|
|
|
58909
58960
|
}
|
|
58910
58961
|
return strcmp(mappingA.name, mappingB.name);
|
|
58911
58962
|
}
|
|
58912
|
-
exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
58963
|
+
exports$1.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
58913
58964
|
function parseSourceMapInput(str) {
|
|
58914
58965
|
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
|
|
58915
58966
|
}
|
|
58916
|
-
exports.parseSourceMapInput = parseSourceMapInput;
|
|
58967
|
+
exports$1.parseSourceMapInput = parseSourceMapInput;
|
|
58917
58968
|
function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
|
|
58918
58969
|
sourceURL = sourceURL || '';
|
|
58919
58970
|
if (sourceRoot) {
|
|
@@ -58937,7 +58988,7 @@ function requireUtil$1 () {
|
|
|
58937
58988
|
}
|
|
58938
58989
|
return normalize(sourceURL);
|
|
58939
58990
|
}
|
|
58940
|
-
exports.computeSourceURL = computeSourceURL;
|
|
58991
|
+
exports$1.computeSourceURL = computeSourceURL;
|
|
58941
58992
|
} (util$1));
|
|
58942
58993
|
return util$1;
|
|
58943
58994
|
}
|
|
@@ -59399,9 +59450,9 @@ var hasRequiredBinarySearch;
|
|
|
59399
59450
|
function requireBinarySearch () {
|
|
59400
59451
|
if (hasRequiredBinarySearch) return binarySearch;
|
|
59401
59452
|
hasRequiredBinarySearch = 1;
|
|
59402
|
-
(function (exports) {
|
|
59403
|
-
exports.GREATEST_LOWER_BOUND = 1;
|
|
59404
|
-
exports.LEAST_UPPER_BOUND = 2;
|
|
59453
|
+
(function (exports$1) {
|
|
59454
|
+
exports$1.GREATEST_LOWER_BOUND = 1;
|
|
59455
|
+
exports$1.LEAST_UPPER_BOUND = 2;
|
|
59405
59456
|
function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
|
|
59406
59457
|
var mid = Math.floor((aHigh - aLow) / 2) + aLow;
|
|
59407
59458
|
var cmp = aCompare(aNeedle, aHaystack[mid], true);
|
|
@@ -59412,7 +59463,7 @@ function requireBinarySearch () {
|
|
|
59412
59463
|
if (aHigh - mid > 1) {
|
|
59413
59464
|
return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
|
|
59414
59465
|
}
|
|
59415
|
-
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
59466
|
+
if (aBias == exports$1.LEAST_UPPER_BOUND) {
|
|
59416
59467
|
return aHigh < aHaystack.length ? aHigh : -1;
|
|
59417
59468
|
} else {
|
|
59418
59469
|
return mid;
|
|
@@ -59422,19 +59473,19 @@ function requireBinarySearch () {
|
|
|
59422
59473
|
if (mid - aLow > 1) {
|
|
59423
59474
|
return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
|
|
59424
59475
|
}
|
|
59425
|
-
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
59476
|
+
if (aBias == exports$1.LEAST_UPPER_BOUND) {
|
|
59426
59477
|
return mid;
|
|
59427
59478
|
} else {
|
|
59428
59479
|
return aLow < 0 ? -1 : aLow;
|
|
59429
59480
|
}
|
|
59430
59481
|
}
|
|
59431
59482
|
}
|
|
59432
|
-
exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
59483
|
+
exports$1.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
59433
59484
|
if (aHaystack.length === 0) {
|
|
59434
59485
|
return -1;
|
|
59435
59486
|
}
|
|
59436
59487
|
var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,
|
|
59437
|
-
aCompare, aBias || exports.GREATEST_LOWER_BOUND);
|
|
59488
|
+
aCompare, aBias || exports$1.GREATEST_LOWER_BOUND);
|
|
59438
59489
|
if (index < 0) {
|
|
59439
59490
|
return -1;
|
|
59440
59491
|
}
|
|
@@ -60494,7 +60545,7 @@ var hasRequiredEscodegen;
|
|
|
60494
60545
|
function requireEscodegen () {
|
|
60495
60546
|
if (hasRequiredEscodegen) return escodegen;
|
|
60496
60547
|
hasRequiredEscodegen = 1;
|
|
60497
|
-
(function (exports) {
|
|
60548
|
+
(function (exports$1) {
|
|
60498
60549
|
(function () {
|
|
60499
60550
|
var Syntax,
|
|
60500
60551
|
Precedence,
|
|
@@ -62586,7 +62637,7 @@ function requireEscodegen () {
|
|
|
62586
62637
|
preserveBlankLines = options.format.preserveBlankLines && sourceCode !== null;
|
|
62587
62638
|
extra = options;
|
|
62588
62639
|
if (sourceMap) {
|
|
62589
|
-
if (!exports.browser) {
|
|
62640
|
+
if (!exports$1.browser) {
|
|
62590
62641
|
SourceNode = requireSourceMap().SourceNode;
|
|
62591
62642
|
} else {
|
|
62592
62643
|
SourceNode = commonjsGlobal.sourceMap.SourceNode;
|
|
@@ -62624,13 +62675,13 @@ function requireEscodegen () {
|
|
|
62624
62675
|
semicolons: false
|
|
62625
62676
|
};
|
|
62626
62677
|
FORMAT_DEFAULTS = getDefaultOptions().format;
|
|
62627
|
-
exports.version = require$$3.version;
|
|
62628
|
-
exports.generate = generate;
|
|
62629
|
-
exports.attachComments = estraverse.attachComments;
|
|
62630
|
-
exports.Precedence = updateDeeply({}, Precedence);
|
|
62631
|
-
exports.browser = false;
|
|
62632
|
-
exports.FORMAT_MINIFY = FORMAT_MINIFY;
|
|
62633
|
-
exports.FORMAT_DEFAULTS = FORMAT_DEFAULTS;
|
|
62678
|
+
exports$1.version = require$$3.version;
|
|
62679
|
+
exports$1.generate = generate;
|
|
62680
|
+
exports$1.attachComments = estraverse.attachComments;
|
|
62681
|
+
exports$1.Precedence = updateDeeply({}, Precedence);
|
|
62682
|
+
exports$1.browser = false;
|
|
62683
|
+
exports$1.FORMAT_MINIFY = FORMAT_MINIFY;
|
|
62684
|
+
exports$1.FORMAT_DEFAULTS = FORMAT_DEFAULTS;
|
|
62634
62685
|
}());
|
|
62635
62686
|
} (escodegen));
|
|
62636
62687
|
return escodegen;
|
|
@@ -62645,7 +62696,7 @@ var hasRequiredEsprima$1;
|
|
|
62645
62696
|
function requireEsprima$1 () {
|
|
62646
62697
|
if (hasRequiredEsprima$1) return esprima$2.exports;
|
|
62647
62698
|
hasRequiredEsprima$1 = 1;
|
|
62648
|
-
(function (module, exports) {
|
|
62699
|
+
(function (module, exports$1) {
|
|
62649
62700
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
62650
62701
|
module.exports = factory();
|
|
62651
62702
|
})(esprima$1, function() {
|
|
@@ -62669,7 +62720,7 @@ function requireEsprima$1 () {
|
|
|
62669
62720
|
return __webpack_require__(0);
|
|
62670
62721
|
})
|
|
62671
62722
|
([
|
|
62672
|
-
function(module, exports, __webpack_require__) {
|
|
62723
|
+
function(module, exports$1, __webpack_require__) {
|
|
62673
62724
|
/*
|
|
62674
62725
|
Copyright JS Foundation and other contributors, https://js.foundation/
|
|
62675
62726
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -62690,7 +62741,7 @@ function requireEsprima$1 () {
|
|
|
62690
62741
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
62691
62742
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
62692
62743
|
*/
|
|
62693
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62744
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62694
62745
|
var comment_handler_1 = __webpack_require__(1);
|
|
62695
62746
|
var jsx_parser_1 = __webpack_require__(3);
|
|
62696
62747
|
var parser_1 = __webpack_require__(8);
|
|
@@ -62741,19 +62792,19 @@ function requireEsprima$1 () {
|
|
|
62741
62792
|
}
|
|
62742
62793
|
return ast;
|
|
62743
62794
|
}
|
|
62744
|
-
exports.parse = parse;
|
|
62795
|
+
exports$1.parse = parse;
|
|
62745
62796
|
function parseModule(code, options, delegate) {
|
|
62746
62797
|
var parsingOptions = options || {};
|
|
62747
62798
|
parsingOptions.sourceType = 'module';
|
|
62748
62799
|
return parse(code, parsingOptions, delegate);
|
|
62749
62800
|
}
|
|
62750
|
-
exports.parseModule = parseModule;
|
|
62801
|
+
exports$1.parseModule = parseModule;
|
|
62751
62802
|
function parseScript(code, options, delegate) {
|
|
62752
62803
|
var parsingOptions = options || {};
|
|
62753
62804
|
parsingOptions.sourceType = 'script';
|
|
62754
62805
|
return parse(code, parsingOptions, delegate);
|
|
62755
62806
|
}
|
|
62756
|
-
exports.parseScript = parseScript;
|
|
62807
|
+
exports$1.parseScript = parseScript;
|
|
62757
62808
|
function tokenize(code, options, delegate) {
|
|
62758
62809
|
var tokenizer = new tokenizer_1.Tokenizer(code, options);
|
|
62759
62810
|
var tokens;
|
|
@@ -62778,13 +62829,13 @@ function requireEsprima$1 () {
|
|
|
62778
62829
|
}
|
|
62779
62830
|
return tokens;
|
|
62780
62831
|
}
|
|
62781
|
-
exports.tokenize = tokenize;
|
|
62832
|
+
exports$1.tokenize = tokenize;
|
|
62782
62833
|
var syntax_1 = __webpack_require__(2);
|
|
62783
|
-
exports.Syntax = syntax_1.Syntax;
|
|
62784
|
-
exports.version = '4.0.1';
|
|
62834
|
+
exports$1.Syntax = syntax_1.Syntax;
|
|
62835
|
+
exports$1.version = '4.0.1';
|
|
62785
62836
|
},
|
|
62786
|
-
function(module, exports, __webpack_require__) {
|
|
62787
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62837
|
+
function(module, exports$1, __webpack_require__) {
|
|
62838
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62788
62839
|
var syntax_1 = __webpack_require__(2);
|
|
62789
62840
|
var CommentHandler = (function () {
|
|
62790
62841
|
function CommentHandler() {
|
|
@@ -62929,11 +62980,11 @@ function requireEsprima$1 () {
|
|
|
62929
62980
|
};
|
|
62930
62981
|
return CommentHandler;
|
|
62931
62982
|
}());
|
|
62932
|
-
exports.CommentHandler = CommentHandler;
|
|
62983
|
+
exports$1.CommentHandler = CommentHandler;
|
|
62933
62984
|
},
|
|
62934
|
-
function(module, exports) {
|
|
62935
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62936
|
-
exports.Syntax = {
|
|
62985
|
+
function(module, exports$1) {
|
|
62986
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62987
|
+
exports$1.Syntax = {
|
|
62937
62988
|
AssignmentExpression: 'AssignmentExpression',
|
|
62938
62989
|
AssignmentPattern: 'AssignmentPattern',
|
|
62939
62990
|
ArrayExpression: 'ArrayExpression',
|
|
@@ -63002,7 +63053,7 @@ function requireEsprima$1 () {
|
|
|
63002
63053
|
YieldExpression: 'YieldExpression'
|
|
63003
63054
|
};
|
|
63004
63055
|
},
|
|
63005
|
-
function(module, exports, __webpack_require__) {
|
|
63056
|
+
function(module, exports$1, __webpack_require__) {
|
|
63006
63057
|
var __extends = (this && this.__extends) || (function () {
|
|
63007
63058
|
var extendStatics = Object.setPrototypeOf ||
|
|
63008
63059
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -63013,7 +63064,7 @@ function requireEsprima$1 () {
|
|
|
63013
63064
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
63014
63065
|
};
|
|
63015
63066
|
})();
|
|
63016
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63067
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63017
63068
|
var character_1 = __webpack_require__(4);
|
|
63018
63069
|
var JSXNode = __webpack_require__(5);
|
|
63019
63070
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
@@ -63516,15 +63567,15 @@ function requireEsprima$1 () {
|
|
|
63516
63567
|
};
|
|
63517
63568
|
return JSXParser;
|
|
63518
63569
|
}(parser_1.Parser));
|
|
63519
|
-
exports.JSXParser = JSXParser;
|
|
63570
|
+
exports$1.JSXParser = JSXParser;
|
|
63520
63571
|
},
|
|
63521
|
-
function(module, exports) {
|
|
63522
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63572
|
+
function(module, exports$1) {
|
|
63573
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63523
63574
|
var Regex = {
|
|
63524
63575
|
NonAsciiIdentifierStart: /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B4\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]/,
|
|
63525
63576
|
NonAsciiIdentifierPart: /[\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B4\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/
|
|
63526
63577
|
};
|
|
63527
|
-
exports.Character = {
|
|
63578
|
+
exports$1.Character = {
|
|
63528
63579
|
fromCodePoint: function (cp) {
|
|
63529
63580
|
return (cp < 0x10000) ? String.fromCharCode(cp) :
|
|
63530
63581
|
String.fromCharCode(0xD800 + ((cp - 0x10000) >> 10)) +
|
|
@@ -63542,7 +63593,7 @@ function requireEsprima$1 () {
|
|
|
63542
63593
|
(cp >= 0x41 && cp <= 0x5A) ||
|
|
63543
63594
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
63544
63595
|
(cp === 0x5C) ||
|
|
63545
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports.Character.fromCodePoint(cp)));
|
|
63596
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports$1.Character.fromCodePoint(cp)));
|
|
63546
63597
|
},
|
|
63547
63598
|
isIdentifierPart: function (cp) {
|
|
63548
63599
|
return (cp === 0x24) || (cp === 0x5F) ||
|
|
@@ -63550,7 +63601,7 @@ function requireEsprima$1 () {
|
|
|
63550
63601
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
63551
63602
|
(cp >= 0x30 && cp <= 0x39) ||
|
|
63552
63603
|
(cp === 0x5C) ||
|
|
63553
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports.Character.fromCodePoint(cp)));
|
|
63604
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports$1.Character.fromCodePoint(cp)));
|
|
63554
63605
|
},
|
|
63555
63606
|
isDecimalDigit: function (cp) {
|
|
63556
63607
|
return (cp >= 0x30 && cp <= 0x39);
|
|
@@ -63565,8 +63616,8 @@ function requireEsprima$1 () {
|
|
|
63565
63616
|
}
|
|
63566
63617
|
};
|
|
63567
63618
|
},
|
|
63568
|
-
function(module, exports, __webpack_require__) {
|
|
63569
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63619
|
+
function(module, exports$1, __webpack_require__) {
|
|
63620
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63570
63621
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
63571
63622
|
var JSXClosingElement = (function () {
|
|
63572
63623
|
function JSXClosingElement(name) {
|
|
@@ -63575,7 +63626,7 @@ function requireEsprima$1 () {
|
|
|
63575
63626
|
}
|
|
63576
63627
|
return JSXClosingElement;
|
|
63577
63628
|
}());
|
|
63578
|
-
exports.JSXClosingElement = JSXClosingElement;
|
|
63629
|
+
exports$1.JSXClosingElement = JSXClosingElement;
|
|
63579
63630
|
var JSXElement = (function () {
|
|
63580
63631
|
function JSXElement(openingElement, children, closingElement) {
|
|
63581
63632
|
this.type = jsx_syntax_1.JSXSyntax.JSXElement;
|
|
@@ -63585,14 +63636,14 @@ function requireEsprima$1 () {
|
|
|
63585
63636
|
}
|
|
63586
63637
|
return JSXElement;
|
|
63587
63638
|
}());
|
|
63588
|
-
exports.JSXElement = JSXElement;
|
|
63639
|
+
exports$1.JSXElement = JSXElement;
|
|
63589
63640
|
var JSXEmptyExpression = (function () {
|
|
63590
63641
|
function JSXEmptyExpression() {
|
|
63591
63642
|
this.type = jsx_syntax_1.JSXSyntax.JSXEmptyExpression;
|
|
63592
63643
|
}
|
|
63593
63644
|
return JSXEmptyExpression;
|
|
63594
63645
|
}());
|
|
63595
|
-
exports.JSXEmptyExpression = JSXEmptyExpression;
|
|
63646
|
+
exports$1.JSXEmptyExpression = JSXEmptyExpression;
|
|
63596
63647
|
var JSXExpressionContainer = (function () {
|
|
63597
63648
|
function JSXExpressionContainer(expression) {
|
|
63598
63649
|
this.type = jsx_syntax_1.JSXSyntax.JSXExpressionContainer;
|
|
@@ -63600,7 +63651,7 @@ function requireEsprima$1 () {
|
|
|
63600
63651
|
}
|
|
63601
63652
|
return JSXExpressionContainer;
|
|
63602
63653
|
}());
|
|
63603
|
-
exports.JSXExpressionContainer = JSXExpressionContainer;
|
|
63654
|
+
exports$1.JSXExpressionContainer = JSXExpressionContainer;
|
|
63604
63655
|
var JSXIdentifier = (function () {
|
|
63605
63656
|
function JSXIdentifier(name) {
|
|
63606
63657
|
this.type = jsx_syntax_1.JSXSyntax.JSXIdentifier;
|
|
@@ -63608,7 +63659,7 @@ function requireEsprima$1 () {
|
|
|
63608
63659
|
}
|
|
63609
63660
|
return JSXIdentifier;
|
|
63610
63661
|
}());
|
|
63611
|
-
exports.JSXIdentifier = JSXIdentifier;
|
|
63662
|
+
exports$1.JSXIdentifier = JSXIdentifier;
|
|
63612
63663
|
var JSXMemberExpression = (function () {
|
|
63613
63664
|
function JSXMemberExpression(object, property) {
|
|
63614
63665
|
this.type = jsx_syntax_1.JSXSyntax.JSXMemberExpression;
|
|
@@ -63617,7 +63668,7 @@ function requireEsprima$1 () {
|
|
|
63617
63668
|
}
|
|
63618
63669
|
return JSXMemberExpression;
|
|
63619
63670
|
}());
|
|
63620
|
-
exports.JSXMemberExpression = JSXMemberExpression;
|
|
63671
|
+
exports$1.JSXMemberExpression = JSXMemberExpression;
|
|
63621
63672
|
var JSXAttribute = (function () {
|
|
63622
63673
|
function JSXAttribute(name, value) {
|
|
63623
63674
|
this.type = jsx_syntax_1.JSXSyntax.JSXAttribute;
|
|
@@ -63626,7 +63677,7 @@ function requireEsprima$1 () {
|
|
|
63626
63677
|
}
|
|
63627
63678
|
return JSXAttribute;
|
|
63628
63679
|
}());
|
|
63629
|
-
exports.JSXAttribute = JSXAttribute;
|
|
63680
|
+
exports$1.JSXAttribute = JSXAttribute;
|
|
63630
63681
|
var JSXNamespacedName = (function () {
|
|
63631
63682
|
function JSXNamespacedName(namespace, name) {
|
|
63632
63683
|
this.type = jsx_syntax_1.JSXSyntax.JSXNamespacedName;
|
|
@@ -63635,7 +63686,7 @@ function requireEsprima$1 () {
|
|
|
63635
63686
|
}
|
|
63636
63687
|
return JSXNamespacedName;
|
|
63637
63688
|
}());
|
|
63638
|
-
exports.JSXNamespacedName = JSXNamespacedName;
|
|
63689
|
+
exports$1.JSXNamespacedName = JSXNamespacedName;
|
|
63639
63690
|
var JSXOpeningElement = (function () {
|
|
63640
63691
|
function JSXOpeningElement(name, selfClosing, attributes) {
|
|
63641
63692
|
this.type = jsx_syntax_1.JSXSyntax.JSXOpeningElement;
|
|
@@ -63645,7 +63696,7 @@ function requireEsprima$1 () {
|
|
|
63645
63696
|
}
|
|
63646
63697
|
return JSXOpeningElement;
|
|
63647
63698
|
}());
|
|
63648
|
-
exports.JSXOpeningElement = JSXOpeningElement;
|
|
63699
|
+
exports$1.JSXOpeningElement = JSXOpeningElement;
|
|
63649
63700
|
var JSXSpreadAttribute = (function () {
|
|
63650
63701
|
function JSXSpreadAttribute(argument) {
|
|
63651
63702
|
this.type = jsx_syntax_1.JSXSyntax.JSXSpreadAttribute;
|
|
@@ -63653,7 +63704,7 @@ function requireEsprima$1 () {
|
|
|
63653
63704
|
}
|
|
63654
63705
|
return JSXSpreadAttribute;
|
|
63655
63706
|
}());
|
|
63656
|
-
exports.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
63707
|
+
exports$1.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
63657
63708
|
var JSXText = (function () {
|
|
63658
63709
|
function JSXText(value, raw) {
|
|
63659
63710
|
this.type = jsx_syntax_1.JSXSyntax.JSXText;
|
|
@@ -63662,11 +63713,11 @@ function requireEsprima$1 () {
|
|
|
63662
63713
|
}
|
|
63663
63714
|
return JSXText;
|
|
63664
63715
|
}());
|
|
63665
|
-
exports.JSXText = JSXText;
|
|
63716
|
+
exports$1.JSXText = JSXText;
|
|
63666
63717
|
},
|
|
63667
|
-
function(module, exports) {
|
|
63668
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63669
|
-
exports.JSXSyntax = {
|
|
63718
|
+
function(module, exports$1) {
|
|
63719
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63720
|
+
exports$1.JSXSyntax = {
|
|
63670
63721
|
JSXAttribute: 'JSXAttribute',
|
|
63671
63722
|
JSXClosingElement: 'JSXClosingElement',
|
|
63672
63723
|
JSXElement: 'JSXElement',
|
|
@@ -63680,8 +63731,8 @@ function requireEsprima$1 () {
|
|
|
63680
63731
|
JSXText: 'JSXText'
|
|
63681
63732
|
};
|
|
63682
63733
|
},
|
|
63683
|
-
function(module, exports, __webpack_require__) {
|
|
63684
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63734
|
+
function(module, exports$1, __webpack_require__) {
|
|
63735
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63685
63736
|
var syntax_1 = __webpack_require__(2);
|
|
63686
63737
|
var ArrayExpression = (function () {
|
|
63687
63738
|
function ArrayExpression(elements) {
|
|
@@ -63690,7 +63741,7 @@ function requireEsprima$1 () {
|
|
|
63690
63741
|
}
|
|
63691
63742
|
return ArrayExpression;
|
|
63692
63743
|
}());
|
|
63693
|
-
exports.ArrayExpression = ArrayExpression;
|
|
63744
|
+
exports$1.ArrayExpression = ArrayExpression;
|
|
63694
63745
|
var ArrayPattern = (function () {
|
|
63695
63746
|
function ArrayPattern(elements) {
|
|
63696
63747
|
this.type = syntax_1.Syntax.ArrayPattern;
|
|
@@ -63698,7 +63749,7 @@ function requireEsprima$1 () {
|
|
|
63698
63749
|
}
|
|
63699
63750
|
return ArrayPattern;
|
|
63700
63751
|
}());
|
|
63701
|
-
exports.ArrayPattern = ArrayPattern;
|
|
63752
|
+
exports$1.ArrayPattern = ArrayPattern;
|
|
63702
63753
|
var ArrowFunctionExpression = (function () {
|
|
63703
63754
|
function ArrowFunctionExpression(params, body, expression) {
|
|
63704
63755
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -63711,7 +63762,7 @@ function requireEsprima$1 () {
|
|
|
63711
63762
|
}
|
|
63712
63763
|
return ArrowFunctionExpression;
|
|
63713
63764
|
}());
|
|
63714
|
-
exports.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
63765
|
+
exports$1.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
63715
63766
|
var AssignmentExpression = (function () {
|
|
63716
63767
|
function AssignmentExpression(operator, left, right) {
|
|
63717
63768
|
this.type = syntax_1.Syntax.AssignmentExpression;
|
|
@@ -63721,7 +63772,7 @@ function requireEsprima$1 () {
|
|
|
63721
63772
|
}
|
|
63722
63773
|
return AssignmentExpression;
|
|
63723
63774
|
}());
|
|
63724
|
-
exports.AssignmentExpression = AssignmentExpression;
|
|
63775
|
+
exports$1.AssignmentExpression = AssignmentExpression;
|
|
63725
63776
|
var AssignmentPattern = (function () {
|
|
63726
63777
|
function AssignmentPattern(left, right) {
|
|
63727
63778
|
this.type = syntax_1.Syntax.AssignmentPattern;
|
|
@@ -63730,7 +63781,7 @@ function requireEsprima$1 () {
|
|
|
63730
63781
|
}
|
|
63731
63782
|
return AssignmentPattern;
|
|
63732
63783
|
}());
|
|
63733
|
-
exports.AssignmentPattern = AssignmentPattern;
|
|
63784
|
+
exports$1.AssignmentPattern = AssignmentPattern;
|
|
63734
63785
|
var AsyncArrowFunctionExpression = (function () {
|
|
63735
63786
|
function AsyncArrowFunctionExpression(params, body, expression) {
|
|
63736
63787
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -63743,7 +63794,7 @@ function requireEsprima$1 () {
|
|
|
63743
63794
|
}
|
|
63744
63795
|
return AsyncArrowFunctionExpression;
|
|
63745
63796
|
}());
|
|
63746
|
-
exports.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
|
|
63797
|
+
exports$1.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
|
|
63747
63798
|
var AsyncFunctionDeclaration = (function () {
|
|
63748
63799
|
function AsyncFunctionDeclaration(id, params, body) {
|
|
63749
63800
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -63756,7 +63807,7 @@ function requireEsprima$1 () {
|
|
|
63756
63807
|
}
|
|
63757
63808
|
return AsyncFunctionDeclaration;
|
|
63758
63809
|
}());
|
|
63759
|
-
exports.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
|
|
63810
|
+
exports$1.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
|
|
63760
63811
|
var AsyncFunctionExpression = (function () {
|
|
63761
63812
|
function AsyncFunctionExpression(id, params, body) {
|
|
63762
63813
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -63769,7 +63820,7 @@ function requireEsprima$1 () {
|
|
|
63769
63820
|
}
|
|
63770
63821
|
return AsyncFunctionExpression;
|
|
63771
63822
|
}());
|
|
63772
|
-
exports.AsyncFunctionExpression = AsyncFunctionExpression;
|
|
63823
|
+
exports$1.AsyncFunctionExpression = AsyncFunctionExpression;
|
|
63773
63824
|
var AwaitExpression = (function () {
|
|
63774
63825
|
function AwaitExpression(argument) {
|
|
63775
63826
|
this.type = syntax_1.Syntax.AwaitExpression;
|
|
@@ -63777,7 +63828,7 @@ function requireEsprima$1 () {
|
|
|
63777
63828
|
}
|
|
63778
63829
|
return AwaitExpression;
|
|
63779
63830
|
}());
|
|
63780
|
-
exports.AwaitExpression = AwaitExpression;
|
|
63831
|
+
exports$1.AwaitExpression = AwaitExpression;
|
|
63781
63832
|
var BinaryExpression = (function () {
|
|
63782
63833
|
function BinaryExpression(operator, left, right) {
|
|
63783
63834
|
var logical = (operator === '||' || operator === '&&');
|
|
@@ -63788,7 +63839,7 @@ function requireEsprima$1 () {
|
|
|
63788
63839
|
}
|
|
63789
63840
|
return BinaryExpression;
|
|
63790
63841
|
}());
|
|
63791
|
-
exports.BinaryExpression = BinaryExpression;
|
|
63842
|
+
exports$1.BinaryExpression = BinaryExpression;
|
|
63792
63843
|
var BlockStatement = (function () {
|
|
63793
63844
|
function BlockStatement(body) {
|
|
63794
63845
|
this.type = syntax_1.Syntax.BlockStatement;
|
|
@@ -63796,7 +63847,7 @@ function requireEsprima$1 () {
|
|
|
63796
63847
|
}
|
|
63797
63848
|
return BlockStatement;
|
|
63798
63849
|
}());
|
|
63799
|
-
exports.BlockStatement = BlockStatement;
|
|
63850
|
+
exports$1.BlockStatement = BlockStatement;
|
|
63800
63851
|
var BreakStatement = (function () {
|
|
63801
63852
|
function BreakStatement(label) {
|
|
63802
63853
|
this.type = syntax_1.Syntax.BreakStatement;
|
|
@@ -63804,7 +63855,7 @@ function requireEsprima$1 () {
|
|
|
63804
63855
|
}
|
|
63805
63856
|
return BreakStatement;
|
|
63806
63857
|
}());
|
|
63807
|
-
exports.BreakStatement = BreakStatement;
|
|
63858
|
+
exports$1.BreakStatement = BreakStatement;
|
|
63808
63859
|
var CallExpression = (function () {
|
|
63809
63860
|
function CallExpression(callee, args) {
|
|
63810
63861
|
this.type = syntax_1.Syntax.CallExpression;
|
|
@@ -63813,7 +63864,7 @@ function requireEsprima$1 () {
|
|
|
63813
63864
|
}
|
|
63814
63865
|
return CallExpression;
|
|
63815
63866
|
}());
|
|
63816
|
-
exports.CallExpression = CallExpression;
|
|
63867
|
+
exports$1.CallExpression = CallExpression;
|
|
63817
63868
|
var CatchClause = (function () {
|
|
63818
63869
|
function CatchClause(param, body) {
|
|
63819
63870
|
this.type = syntax_1.Syntax.CatchClause;
|
|
@@ -63822,7 +63873,7 @@ function requireEsprima$1 () {
|
|
|
63822
63873
|
}
|
|
63823
63874
|
return CatchClause;
|
|
63824
63875
|
}());
|
|
63825
|
-
exports.CatchClause = CatchClause;
|
|
63876
|
+
exports$1.CatchClause = CatchClause;
|
|
63826
63877
|
var ClassBody = (function () {
|
|
63827
63878
|
function ClassBody(body) {
|
|
63828
63879
|
this.type = syntax_1.Syntax.ClassBody;
|
|
@@ -63830,7 +63881,7 @@ function requireEsprima$1 () {
|
|
|
63830
63881
|
}
|
|
63831
63882
|
return ClassBody;
|
|
63832
63883
|
}());
|
|
63833
|
-
exports.ClassBody = ClassBody;
|
|
63884
|
+
exports$1.ClassBody = ClassBody;
|
|
63834
63885
|
var ClassDeclaration = (function () {
|
|
63835
63886
|
function ClassDeclaration(id, superClass, body) {
|
|
63836
63887
|
this.type = syntax_1.Syntax.ClassDeclaration;
|
|
@@ -63840,7 +63891,7 @@ function requireEsprima$1 () {
|
|
|
63840
63891
|
}
|
|
63841
63892
|
return ClassDeclaration;
|
|
63842
63893
|
}());
|
|
63843
|
-
exports.ClassDeclaration = ClassDeclaration;
|
|
63894
|
+
exports$1.ClassDeclaration = ClassDeclaration;
|
|
63844
63895
|
var ClassExpression = (function () {
|
|
63845
63896
|
function ClassExpression(id, superClass, body) {
|
|
63846
63897
|
this.type = syntax_1.Syntax.ClassExpression;
|
|
@@ -63850,7 +63901,7 @@ function requireEsprima$1 () {
|
|
|
63850
63901
|
}
|
|
63851
63902
|
return ClassExpression;
|
|
63852
63903
|
}());
|
|
63853
|
-
exports.ClassExpression = ClassExpression;
|
|
63904
|
+
exports$1.ClassExpression = ClassExpression;
|
|
63854
63905
|
var ComputedMemberExpression = (function () {
|
|
63855
63906
|
function ComputedMemberExpression(object, property) {
|
|
63856
63907
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -63860,7 +63911,7 @@ function requireEsprima$1 () {
|
|
|
63860
63911
|
}
|
|
63861
63912
|
return ComputedMemberExpression;
|
|
63862
63913
|
}());
|
|
63863
|
-
exports.ComputedMemberExpression = ComputedMemberExpression;
|
|
63914
|
+
exports$1.ComputedMemberExpression = ComputedMemberExpression;
|
|
63864
63915
|
var ConditionalExpression = (function () {
|
|
63865
63916
|
function ConditionalExpression(test, consequent, alternate) {
|
|
63866
63917
|
this.type = syntax_1.Syntax.ConditionalExpression;
|
|
@@ -63870,7 +63921,7 @@ function requireEsprima$1 () {
|
|
|
63870
63921
|
}
|
|
63871
63922
|
return ConditionalExpression;
|
|
63872
63923
|
}());
|
|
63873
|
-
exports.ConditionalExpression = ConditionalExpression;
|
|
63924
|
+
exports$1.ConditionalExpression = ConditionalExpression;
|
|
63874
63925
|
var ContinueStatement = (function () {
|
|
63875
63926
|
function ContinueStatement(label) {
|
|
63876
63927
|
this.type = syntax_1.Syntax.ContinueStatement;
|
|
@@ -63878,14 +63929,14 @@ function requireEsprima$1 () {
|
|
|
63878
63929
|
}
|
|
63879
63930
|
return ContinueStatement;
|
|
63880
63931
|
}());
|
|
63881
|
-
exports.ContinueStatement = ContinueStatement;
|
|
63932
|
+
exports$1.ContinueStatement = ContinueStatement;
|
|
63882
63933
|
var DebuggerStatement = (function () {
|
|
63883
63934
|
function DebuggerStatement() {
|
|
63884
63935
|
this.type = syntax_1.Syntax.DebuggerStatement;
|
|
63885
63936
|
}
|
|
63886
63937
|
return DebuggerStatement;
|
|
63887
63938
|
}());
|
|
63888
|
-
exports.DebuggerStatement = DebuggerStatement;
|
|
63939
|
+
exports$1.DebuggerStatement = DebuggerStatement;
|
|
63889
63940
|
var Directive = (function () {
|
|
63890
63941
|
function Directive(expression, directive) {
|
|
63891
63942
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -63894,7 +63945,7 @@ function requireEsprima$1 () {
|
|
|
63894
63945
|
}
|
|
63895
63946
|
return Directive;
|
|
63896
63947
|
}());
|
|
63897
|
-
exports.Directive = Directive;
|
|
63948
|
+
exports$1.Directive = Directive;
|
|
63898
63949
|
var DoWhileStatement = (function () {
|
|
63899
63950
|
function DoWhileStatement(body, test) {
|
|
63900
63951
|
this.type = syntax_1.Syntax.DoWhileStatement;
|
|
@@ -63903,14 +63954,14 @@ function requireEsprima$1 () {
|
|
|
63903
63954
|
}
|
|
63904
63955
|
return DoWhileStatement;
|
|
63905
63956
|
}());
|
|
63906
|
-
exports.DoWhileStatement = DoWhileStatement;
|
|
63957
|
+
exports$1.DoWhileStatement = DoWhileStatement;
|
|
63907
63958
|
var EmptyStatement = (function () {
|
|
63908
63959
|
function EmptyStatement() {
|
|
63909
63960
|
this.type = syntax_1.Syntax.EmptyStatement;
|
|
63910
63961
|
}
|
|
63911
63962
|
return EmptyStatement;
|
|
63912
63963
|
}());
|
|
63913
|
-
exports.EmptyStatement = EmptyStatement;
|
|
63964
|
+
exports$1.EmptyStatement = EmptyStatement;
|
|
63914
63965
|
var ExportAllDeclaration = (function () {
|
|
63915
63966
|
function ExportAllDeclaration(source) {
|
|
63916
63967
|
this.type = syntax_1.Syntax.ExportAllDeclaration;
|
|
@@ -63918,7 +63969,7 @@ function requireEsprima$1 () {
|
|
|
63918
63969
|
}
|
|
63919
63970
|
return ExportAllDeclaration;
|
|
63920
63971
|
}());
|
|
63921
|
-
exports.ExportAllDeclaration = ExportAllDeclaration;
|
|
63972
|
+
exports$1.ExportAllDeclaration = ExportAllDeclaration;
|
|
63922
63973
|
var ExportDefaultDeclaration = (function () {
|
|
63923
63974
|
function ExportDefaultDeclaration(declaration) {
|
|
63924
63975
|
this.type = syntax_1.Syntax.ExportDefaultDeclaration;
|
|
@@ -63926,7 +63977,7 @@ function requireEsprima$1 () {
|
|
|
63926
63977
|
}
|
|
63927
63978
|
return ExportDefaultDeclaration;
|
|
63928
63979
|
}());
|
|
63929
|
-
exports.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
63980
|
+
exports$1.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
63930
63981
|
var ExportNamedDeclaration = (function () {
|
|
63931
63982
|
function ExportNamedDeclaration(declaration, specifiers, source) {
|
|
63932
63983
|
this.type = syntax_1.Syntax.ExportNamedDeclaration;
|
|
@@ -63936,7 +63987,7 @@ function requireEsprima$1 () {
|
|
|
63936
63987
|
}
|
|
63937
63988
|
return ExportNamedDeclaration;
|
|
63938
63989
|
}());
|
|
63939
|
-
exports.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
63990
|
+
exports$1.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
63940
63991
|
var ExportSpecifier = (function () {
|
|
63941
63992
|
function ExportSpecifier(local, exported) {
|
|
63942
63993
|
this.type = syntax_1.Syntax.ExportSpecifier;
|
|
@@ -63945,7 +63996,7 @@ function requireEsprima$1 () {
|
|
|
63945
63996
|
}
|
|
63946
63997
|
return ExportSpecifier;
|
|
63947
63998
|
}());
|
|
63948
|
-
exports.ExportSpecifier = ExportSpecifier;
|
|
63999
|
+
exports$1.ExportSpecifier = ExportSpecifier;
|
|
63949
64000
|
var ExpressionStatement = (function () {
|
|
63950
64001
|
function ExpressionStatement(expression) {
|
|
63951
64002
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -63953,7 +64004,7 @@ function requireEsprima$1 () {
|
|
|
63953
64004
|
}
|
|
63954
64005
|
return ExpressionStatement;
|
|
63955
64006
|
}());
|
|
63956
|
-
exports.ExpressionStatement = ExpressionStatement;
|
|
64007
|
+
exports$1.ExpressionStatement = ExpressionStatement;
|
|
63957
64008
|
var ForInStatement = (function () {
|
|
63958
64009
|
function ForInStatement(left, right, body) {
|
|
63959
64010
|
this.type = syntax_1.Syntax.ForInStatement;
|
|
@@ -63964,7 +64015,7 @@ function requireEsprima$1 () {
|
|
|
63964
64015
|
}
|
|
63965
64016
|
return ForInStatement;
|
|
63966
64017
|
}());
|
|
63967
|
-
exports.ForInStatement = ForInStatement;
|
|
64018
|
+
exports$1.ForInStatement = ForInStatement;
|
|
63968
64019
|
var ForOfStatement = (function () {
|
|
63969
64020
|
function ForOfStatement(left, right, body) {
|
|
63970
64021
|
this.type = syntax_1.Syntax.ForOfStatement;
|
|
@@ -63974,7 +64025,7 @@ function requireEsprima$1 () {
|
|
|
63974
64025
|
}
|
|
63975
64026
|
return ForOfStatement;
|
|
63976
64027
|
}());
|
|
63977
|
-
exports.ForOfStatement = ForOfStatement;
|
|
64028
|
+
exports$1.ForOfStatement = ForOfStatement;
|
|
63978
64029
|
var ForStatement = (function () {
|
|
63979
64030
|
function ForStatement(init, test, update, body) {
|
|
63980
64031
|
this.type = syntax_1.Syntax.ForStatement;
|
|
@@ -63985,7 +64036,7 @@ function requireEsprima$1 () {
|
|
|
63985
64036
|
}
|
|
63986
64037
|
return ForStatement;
|
|
63987
64038
|
}());
|
|
63988
|
-
exports.ForStatement = ForStatement;
|
|
64039
|
+
exports$1.ForStatement = ForStatement;
|
|
63989
64040
|
var FunctionDeclaration = (function () {
|
|
63990
64041
|
function FunctionDeclaration(id, params, body, generator) {
|
|
63991
64042
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -63998,7 +64049,7 @@ function requireEsprima$1 () {
|
|
|
63998
64049
|
}
|
|
63999
64050
|
return FunctionDeclaration;
|
|
64000
64051
|
}());
|
|
64001
|
-
exports.FunctionDeclaration = FunctionDeclaration;
|
|
64052
|
+
exports$1.FunctionDeclaration = FunctionDeclaration;
|
|
64002
64053
|
var FunctionExpression = (function () {
|
|
64003
64054
|
function FunctionExpression(id, params, body, generator) {
|
|
64004
64055
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -64011,7 +64062,7 @@ function requireEsprima$1 () {
|
|
|
64011
64062
|
}
|
|
64012
64063
|
return FunctionExpression;
|
|
64013
64064
|
}());
|
|
64014
|
-
exports.FunctionExpression = FunctionExpression;
|
|
64065
|
+
exports$1.FunctionExpression = FunctionExpression;
|
|
64015
64066
|
var Identifier = (function () {
|
|
64016
64067
|
function Identifier(name) {
|
|
64017
64068
|
this.type = syntax_1.Syntax.Identifier;
|
|
@@ -64019,7 +64070,7 @@ function requireEsprima$1 () {
|
|
|
64019
64070
|
}
|
|
64020
64071
|
return Identifier;
|
|
64021
64072
|
}());
|
|
64022
|
-
exports.Identifier = Identifier;
|
|
64073
|
+
exports$1.Identifier = Identifier;
|
|
64023
64074
|
var IfStatement = (function () {
|
|
64024
64075
|
function IfStatement(test, consequent, alternate) {
|
|
64025
64076
|
this.type = syntax_1.Syntax.IfStatement;
|
|
@@ -64029,7 +64080,7 @@ function requireEsprima$1 () {
|
|
|
64029
64080
|
}
|
|
64030
64081
|
return IfStatement;
|
|
64031
64082
|
}());
|
|
64032
|
-
exports.IfStatement = IfStatement;
|
|
64083
|
+
exports$1.IfStatement = IfStatement;
|
|
64033
64084
|
var ImportDeclaration = (function () {
|
|
64034
64085
|
function ImportDeclaration(specifiers, source) {
|
|
64035
64086
|
this.type = syntax_1.Syntax.ImportDeclaration;
|
|
@@ -64038,7 +64089,7 @@ function requireEsprima$1 () {
|
|
|
64038
64089
|
}
|
|
64039
64090
|
return ImportDeclaration;
|
|
64040
64091
|
}());
|
|
64041
|
-
exports.ImportDeclaration = ImportDeclaration;
|
|
64092
|
+
exports$1.ImportDeclaration = ImportDeclaration;
|
|
64042
64093
|
var ImportDefaultSpecifier = (function () {
|
|
64043
64094
|
function ImportDefaultSpecifier(local) {
|
|
64044
64095
|
this.type = syntax_1.Syntax.ImportDefaultSpecifier;
|
|
@@ -64046,7 +64097,7 @@ function requireEsprima$1 () {
|
|
|
64046
64097
|
}
|
|
64047
64098
|
return ImportDefaultSpecifier;
|
|
64048
64099
|
}());
|
|
64049
|
-
exports.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
64100
|
+
exports$1.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
64050
64101
|
var ImportNamespaceSpecifier = (function () {
|
|
64051
64102
|
function ImportNamespaceSpecifier(local) {
|
|
64052
64103
|
this.type = syntax_1.Syntax.ImportNamespaceSpecifier;
|
|
@@ -64054,7 +64105,7 @@ function requireEsprima$1 () {
|
|
|
64054
64105
|
}
|
|
64055
64106
|
return ImportNamespaceSpecifier;
|
|
64056
64107
|
}());
|
|
64057
|
-
exports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
64108
|
+
exports$1.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
64058
64109
|
var ImportSpecifier = (function () {
|
|
64059
64110
|
function ImportSpecifier(local, imported) {
|
|
64060
64111
|
this.type = syntax_1.Syntax.ImportSpecifier;
|
|
@@ -64063,7 +64114,7 @@ function requireEsprima$1 () {
|
|
|
64063
64114
|
}
|
|
64064
64115
|
return ImportSpecifier;
|
|
64065
64116
|
}());
|
|
64066
|
-
exports.ImportSpecifier = ImportSpecifier;
|
|
64117
|
+
exports$1.ImportSpecifier = ImportSpecifier;
|
|
64067
64118
|
var LabeledStatement = (function () {
|
|
64068
64119
|
function LabeledStatement(label, body) {
|
|
64069
64120
|
this.type = syntax_1.Syntax.LabeledStatement;
|
|
@@ -64072,7 +64123,7 @@ function requireEsprima$1 () {
|
|
|
64072
64123
|
}
|
|
64073
64124
|
return LabeledStatement;
|
|
64074
64125
|
}());
|
|
64075
|
-
exports.LabeledStatement = LabeledStatement;
|
|
64126
|
+
exports$1.LabeledStatement = LabeledStatement;
|
|
64076
64127
|
var Literal = (function () {
|
|
64077
64128
|
function Literal(value, raw) {
|
|
64078
64129
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -64081,7 +64132,7 @@ function requireEsprima$1 () {
|
|
|
64081
64132
|
}
|
|
64082
64133
|
return Literal;
|
|
64083
64134
|
}());
|
|
64084
|
-
exports.Literal = Literal;
|
|
64135
|
+
exports$1.Literal = Literal;
|
|
64085
64136
|
var MetaProperty = (function () {
|
|
64086
64137
|
function MetaProperty(meta, property) {
|
|
64087
64138
|
this.type = syntax_1.Syntax.MetaProperty;
|
|
@@ -64090,7 +64141,7 @@ function requireEsprima$1 () {
|
|
|
64090
64141
|
}
|
|
64091
64142
|
return MetaProperty;
|
|
64092
64143
|
}());
|
|
64093
|
-
exports.MetaProperty = MetaProperty;
|
|
64144
|
+
exports$1.MetaProperty = MetaProperty;
|
|
64094
64145
|
var MethodDefinition = (function () {
|
|
64095
64146
|
function MethodDefinition(key, computed, value, kind, isStatic) {
|
|
64096
64147
|
this.type = syntax_1.Syntax.MethodDefinition;
|
|
@@ -64102,7 +64153,7 @@ function requireEsprima$1 () {
|
|
|
64102
64153
|
}
|
|
64103
64154
|
return MethodDefinition;
|
|
64104
64155
|
}());
|
|
64105
|
-
exports.MethodDefinition = MethodDefinition;
|
|
64156
|
+
exports$1.MethodDefinition = MethodDefinition;
|
|
64106
64157
|
var Module = (function () {
|
|
64107
64158
|
function Module(body) {
|
|
64108
64159
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -64111,7 +64162,7 @@ function requireEsprima$1 () {
|
|
|
64111
64162
|
}
|
|
64112
64163
|
return Module;
|
|
64113
64164
|
}());
|
|
64114
|
-
exports.Module = Module;
|
|
64165
|
+
exports$1.Module = Module;
|
|
64115
64166
|
var NewExpression = (function () {
|
|
64116
64167
|
function NewExpression(callee, args) {
|
|
64117
64168
|
this.type = syntax_1.Syntax.NewExpression;
|
|
@@ -64120,7 +64171,7 @@ function requireEsprima$1 () {
|
|
|
64120
64171
|
}
|
|
64121
64172
|
return NewExpression;
|
|
64122
64173
|
}());
|
|
64123
|
-
exports.NewExpression = NewExpression;
|
|
64174
|
+
exports$1.NewExpression = NewExpression;
|
|
64124
64175
|
var ObjectExpression = (function () {
|
|
64125
64176
|
function ObjectExpression(properties) {
|
|
64126
64177
|
this.type = syntax_1.Syntax.ObjectExpression;
|
|
@@ -64128,7 +64179,7 @@ function requireEsprima$1 () {
|
|
|
64128
64179
|
}
|
|
64129
64180
|
return ObjectExpression;
|
|
64130
64181
|
}());
|
|
64131
|
-
exports.ObjectExpression = ObjectExpression;
|
|
64182
|
+
exports$1.ObjectExpression = ObjectExpression;
|
|
64132
64183
|
var ObjectPattern = (function () {
|
|
64133
64184
|
function ObjectPattern(properties) {
|
|
64134
64185
|
this.type = syntax_1.Syntax.ObjectPattern;
|
|
@@ -64136,7 +64187,7 @@ function requireEsprima$1 () {
|
|
|
64136
64187
|
}
|
|
64137
64188
|
return ObjectPattern;
|
|
64138
64189
|
}());
|
|
64139
|
-
exports.ObjectPattern = ObjectPattern;
|
|
64190
|
+
exports$1.ObjectPattern = ObjectPattern;
|
|
64140
64191
|
var Property = (function () {
|
|
64141
64192
|
function Property(kind, key, computed, value, method, shorthand) {
|
|
64142
64193
|
this.type = syntax_1.Syntax.Property;
|
|
@@ -64149,7 +64200,7 @@ function requireEsprima$1 () {
|
|
|
64149
64200
|
}
|
|
64150
64201
|
return Property;
|
|
64151
64202
|
}());
|
|
64152
|
-
exports.Property = Property;
|
|
64203
|
+
exports$1.Property = Property;
|
|
64153
64204
|
var RegexLiteral = (function () {
|
|
64154
64205
|
function RegexLiteral(value, raw, pattern, flags) {
|
|
64155
64206
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -64159,7 +64210,7 @@ function requireEsprima$1 () {
|
|
|
64159
64210
|
}
|
|
64160
64211
|
return RegexLiteral;
|
|
64161
64212
|
}());
|
|
64162
|
-
exports.RegexLiteral = RegexLiteral;
|
|
64213
|
+
exports$1.RegexLiteral = RegexLiteral;
|
|
64163
64214
|
var RestElement = (function () {
|
|
64164
64215
|
function RestElement(argument) {
|
|
64165
64216
|
this.type = syntax_1.Syntax.RestElement;
|
|
@@ -64167,7 +64218,7 @@ function requireEsprima$1 () {
|
|
|
64167
64218
|
}
|
|
64168
64219
|
return RestElement;
|
|
64169
64220
|
}());
|
|
64170
|
-
exports.RestElement = RestElement;
|
|
64221
|
+
exports$1.RestElement = RestElement;
|
|
64171
64222
|
var ReturnStatement = (function () {
|
|
64172
64223
|
function ReturnStatement(argument) {
|
|
64173
64224
|
this.type = syntax_1.Syntax.ReturnStatement;
|
|
@@ -64175,7 +64226,7 @@ function requireEsprima$1 () {
|
|
|
64175
64226
|
}
|
|
64176
64227
|
return ReturnStatement;
|
|
64177
64228
|
}());
|
|
64178
|
-
exports.ReturnStatement = ReturnStatement;
|
|
64229
|
+
exports$1.ReturnStatement = ReturnStatement;
|
|
64179
64230
|
var Script = (function () {
|
|
64180
64231
|
function Script(body) {
|
|
64181
64232
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -64184,7 +64235,7 @@ function requireEsprima$1 () {
|
|
|
64184
64235
|
}
|
|
64185
64236
|
return Script;
|
|
64186
64237
|
}());
|
|
64187
|
-
exports.Script = Script;
|
|
64238
|
+
exports$1.Script = Script;
|
|
64188
64239
|
var SequenceExpression = (function () {
|
|
64189
64240
|
function SequenceExpression(expressions) {
|
|
64190
64241
|
this.type = syntax_1.Syntax.SequenceExpression;
|
|
@@ -64192,7 +64243,7 @@ function requireEsprima$1 () {
|
|
|
64192
64243
|
}
|
|
64193
64244
|
return SequenceExpression;
|
|
64194
64245
|
}());
|
|
64195
|
-
exports.SequenceExpression = SequenceExpression;
|
|
64246
|
+
exports$1.SequenceExpression = SequenceExpression;
|
|
64196
64247
|
var SpreadElement = (function () {
|
|
64197
64248
|
function SpreadElement(argument) {
|
|
64198
64249
|
this.type = syntax_1.Syntax.SpreadElement;
|
|
@@ -64200,7 +64251,7 @@ function requireEsprima$1 () {
|
|
|
64200
64251
|
}
|
|
64201
64252
|
return SpreadElement;
|
|
64202
64253
|
}());
|
|
64203
|
-
exports.SpreadElement = SpreadElement;
|
|
64254
|
+
exports$1.SpreadElement = SpreadElement;
|
|
64204
64255
|
var StaticMemberExpression = (function () {
|
|
64205
64256
|
function StaticMemberExpression(object, property) {
|
|
64206
64257
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -64210,14 +64261,14 @@ function requireEsprima$1 () {
|
|
|
64210
64261
|
}
|
|
64211
64262
|
return StaticMemberExpression;
|
|
64212
64263
|
}());
|
|
64213
|
-
exports.StaticMemberExpression = StaticMemberExpression;
|
|
64264
|
+
exports$1.StaticMemberExpression = StaticMemberExpression;
|
|
64214
64265
|
var Super = (function () {
|
|
64215
64266
|
function Super() {
|
|
64216
64267
|
this.type = syntax_1.Syntax.Super;
|
|
64217
64268
|
}
|
|
64218
64269
|
return Super;
|
|
64219
64270
|
}());
|
|
64220
|
-
exports.Super = Super;
|
|
64271
|
+
exports$1.Super = Super;
|
|
64221
64272
|
var SwitchCase = (function () {
|
|
64222
64273
|
function SwitchCase(test, consequent) {
|
|
64223
64274
|
this.type = syntax_1.Syntax.SwitchCase;
|
|
@@ -64226,7 +64277,7 @@ function requireEsprima$1 () {
|
|
|
64226
64277
|
}
|
|
64227
64278
|
return SwitchCase;
|
|
64228
64279
|
}());
|
|
64229
|
-
exports.SwitchCase = SwitchCase;
|
|
64280
|
+
exports$1.SwitchCase = SwitchCase;
|
|
64230
64281
|
var SwitchStatement = (function () {
|
|
64231
64282
|
function SwitchStatement(discriminant, cases) {
|
|
64232
64283
|
this.type = syntax_1.Syntax.SwitchStatement;
|
|
@@ -64235,7 +64286,7 @@ function requireEsprima$1 () {
|
|
|
64235
64286
|
}
|
|
64236
64287
|
return SwitchStatement;
|
|
64237
64288
|
}());
|
|
64238
|
-
exports.SwitchStatement = SwitchStatement;
|
|
64289
|
+
exports$1.SwitchStatement = SwitchStatement;
|
|
64239
64290
|
var TaggedTemplateExpression = (function () {
|
|
64240
64291
|
function TaggedTemplateExpression(tag, quasi) {
|
|
64241
64292
|
this.type = syntax_1.Syntax.TaggedTemplateExpression;
|
|
@@ -64244,7 +64295,7 @@ function requireEsprima$1 () {
|
|
|
64244
64295
|
}
|
|
64245
64296
|
return TaggedTemplateExpression;
|
|
64246
64297
|
}());
|
|
64247
|
-
exports.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
64298
|
+
exports$1.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
64248
64299
|
var TemplateElement = (function () {
|
|
64249
64300
|
function TemplateElement(value, tail) {
|
|
64250
64301
|
this.type = syntax_1.Syntax.TemplateElement;
|
|
@@ -64253,7 +64304,7 @@ function requireEsprima$1 () {
|
|
|
64253
64304
|
}
|
|
64254
64305
|
return TemplateElement;
|
|
64255
64306
|
}());
|
|
64256
|
-
exports.TemplateElement = TemplateElement;
|
|
64307
|
+
exports$1.TemplateElement = TemplateElement;
|
|
64257
64308
|
var TemplateLiteral = (function () {
|
|
64258
64309
|
function TemplateLiteral(quasis, expressions) {
|
|
64259
64310
|
this.type = syntax_1.Syntax.TemplateLiteral;
|
|
@@ -64262,14 +64313,14 @@ function requireEsprima$1 () {
|
|
|
64262
64313
|
}
|
|
64263
64314
|
return TemplateLiteral;
|
|
64264
64315
|
}());
|
|
64265
|
-
exports.TemplateLiteral = TemplateLiteral;
|
|
64316
|
+
exports$1.TemplateLiteral = TemplateLiteral;
|
|
64266
64317
|
var ThisExpression = (function () {
|
|
64267
64318
|
function ThisExpression() {
|
|
64268
64319
|
this.type = syntax_1.Syntax.ThisExpression;
|
|
64269
64320
|
}
|
|
64270
64321
|
return ThisExpression;
|
|
64271
64322
|
}());
|
|
64272
|
-
exports.ThisExpression = ThisExpression;
|
|
64323
|
+
exports$1.ThisExpression = ThisExpression;
|
|
64273
64324
|
var ThrowStatement = (function () {
|
|
64274
64325
|
function ThrowStatement(argument) {
|
|
64275
64326
|
this.type = syntax_1.Syntax.ThrowStatement;
|
|
@@ -64277,7 +64328,7 @@ function requireEsprima$1 () {
|
|
|
64277
64328
|
}
|
|
64278
64329
|
return ThrowStatement;
|
|
64279
64330
|
}());
|
|
64280
|
-
exports.ThrowStatement = ThrowStatement;
|
|
64331
|
+
exports$1.ThrowStatement = ThrowStatement;
|
|
64281
64332
|
var TryStatement = (function () {
|
|
64282
64333
|
function TryStatement(block, handler, finalizer) {
|
|
64283
64334
|
this.type = syntax_1.Syntax.TryStatement;
|
|
@@ -64287,7 +64338,7 @@ function requireEsprima$1 () {
|
|
|
64287
64338
|
}
|
|
64288
64339
|
return TryStatement;
|
|
64289
64340
|
}());
|
|
64290
|
-
exports.TryStatement = TryStatement;
|
|
64341
|
+
exports$1.TryStatement = TryStatement;
|
|
64291
64342
|
var UnaryExpression = (function () {
|
|
64292
64343
|
function UnaryExpression(operator, argument) {
|
|
64293
64344
|
this.type = syntax_1.Syntax.UnaryExpression;
|
|
@@ -64297,7 +64348,7 @@ function requireEsprima$1 () {
|
|
|
64297
64348
|
}
|
|
64298
64349
|
return UnaryExpression;
|
|
64299
64350
|
}());
|
|
64300
|
-
exports.UnaryExpression = UnaryExpression;
|
|
64351
|
+
exports$1.UnaryExpression = UnaryExpression;
|
|
64301
64352
|
var UpdateExpression = (function () {
|
|
64302
64353
|
function UpdateExpression(operator, argument, prefix) {
|
|
64303
64354
|
this.type = syntax_1.Syntax.UpdateExpression;
|
|
@@ -64307,7 +64358,7 @@ function requireEsprima$1 () {
|
|
|
64307
64358
|
}
|
|
64308
64359
|
return UpdateExpression;
|
|
64309
64360
|
}());
|
|
64310
|
-
exports.UpdateExpression = UpdateExpression;
|
|
64361
|
+
exports$1.UpdateExpression = UpdateExpression;
|
|
64311
64362
|
var VariableDeclaration = (function () {
|
|
64312
64363
|
function VariableDeclaration(declarations, kind) {
|
|
64313
64364
|
this.type = syntax_1.Syntax.VariableDeclaration;
|
|
@@ -64316,7 +64367,7 @@ function requireEsprima$1 () {
|
|
|
64316
64367
|
}
|
|
64317
64368
|
return VariableDeclaration;
|
|
64318
64369
|
}());
|
|
64319
|
-
exports.VariableDeclaration = VariableDeclaration;
|
|
64370
|
+
exports$1.VariableDeclaration = VariableDeclaration;
|
|
64320
64371
|
var VariableDeclarator = (function () {
|
|
64321
64372
|
function VariableDeclarator(id, init) {
|
|
64322
64373
|
this.type = syntax_1.Syntax.VariableDeclarator;
|
|
@@ -64325,7 +64376,7 @@ function requireEsprima$1 () {
|
|
|
64325
64376
|
}
|
|
64326
64377
|
return VariableDeclarator;
|
|
64327
64378
|
}());
|
|
64328
|
-
exports.VariableDeclarator = VariableDeclarator;
|
|
64379
|
+
exports$1.VariableDeclarator = VariableDeclarator;
|
|
64329
64380
|
var WhileStatement = (function () {
|
|
64330
64381
|
function WhileStatement(test, body) {
|
|
64331
64382
|
this.type = syntax_1.Syntax.WhileStatement;
|
|
@@ -64334,7 +64385,7 @@ function requireEsprima$1 () {
|
|
|
64334
64385
|
}
|
|
64335
64386
|
return WhileStatement;
|
|
64336
64387
|
}());
|
|
64337
|
-
exports.WhileStatement = WhileStatement;
|
|
64388
|
+
exports$1.WhileStatement = WhileStatement;
|
|
64338
64389
|
var WithStatement = (function () {
|
|
64339
64390
|
function WithStatement(object, body) {
|
|
64340
64391
|
this.type = syntax_1.Syntax.WithStatement;
|
|
@@ -64343,7 +64394,7 @@ function requireEsprima$1 () {
|
|
|
64343
64394
|
}
|
|
64344
64395
|
return WithStatement;
|
|
64345
64396
|
}());
|
|
64346
|
-
exports.WithStatement = WithStatement;
|
|
64397
|
+
exports$1.WithStatement = WithStatement;
|
|
64347
64398
|
var YieldExpression = (function () {
|
|
64348
64399
|
function YieldExpression(argument, delegate) {
|
|
64349
64400
|
this.type = syntax_1.Syntax.YieldExpression;
|
|
@@ -64352,10 +64403,10 @@ function requireEsprima$1 () {
|
|
|
64352
64403
|
}
|
|
64353
64404
|
return YieldExpression;
|
|
64354
64405
|
}());
|
|
64355
|
-
exports.YieldExpression = YieldExpression;
|
|
64406
|
+
exports$1.YieldExpression = YieldExpression;
|
|
64356
64407
|
},
|
|
64357
|
-
function(module, exports, __webpack_require__) {
|
|
64358
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64408
|
+
function(module, exports$1, __webpack_require__) {
|
|
64409
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
64359
64410
|
var assert_1 = __webpack_require__(9);
|
|
64360
64411
|
var error_handler_1 = __webpack_require__(10);
|
|
64361
64412
|
var messages_1 = __webpack_require__(11);
|
|
@@ -67353,19 +67404,19 @@ function requireEsprima$1 () {
|
|
|
67353
67404
|
};
|
|
67354
67405
|
return Parser;
|
|
67355
67406
|
}());
|
|
67356
|
-
exports.Parser = Parser;
|
|
67407
|
+
exports$1.Parser = Parser;
|
|
67357
67408
|
},
|
|
67358
|
-
function(module, exports) {
|
|
67359
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67409
|
+
function(module, exports$1) {
|
|
67410
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67360
67411
|
function assert(condition, message) {
|
|
67361
67412
|
if (!condition) {
|
|
67362
67413
|
throw new Error('ASSERT: ' + message);
|
|
67363
67414
|
}
|
|
67364
67415
|
}
|
|
67365
|
-
exports.assert = assert;
|
|
67416
|
+
exports$1.assert = assert;
|
|
67366
67417
|
},
|
|
67367
|
-
function(module, exports) {
|
|
67368
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67418
|
+
function(module, exports$1) {
|
|
67419
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67369
67420
|
var ErrorHandler = (function () {
|
|
67370
67421
|
function ErrorHandler() {
|
|
67371
67422
|
this.errors = [];
|
|
@@ -67417,11 +67468,11 @@ function requireEsprima$1 () {
|
|
|
67417
67468
|
};
|
|
67418
67469
|
return ErrorHandler;
|
|
67419
67470
|
}());
|
|
67420
|
-
exports.ErrorHandler = ErrorHandler;
|
|
67471
|
+
exports$1.ErrorHandler = ErrorHandler;
|
|
67421
67472
|
},
|
|
67422
|
-
function(module, exports) {
|
|
67423
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67424
|
-
exports.Messages = {
|
|
67473
|
+
function(module, exports$1) {
|
|
67474
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67475
|
+
exports$1.Messages = {
|
|
67425
67476
|
BadGetterArity: 'Getter must not have any formal parameters',
|
|
67426
67477
|
BadSetterArity: 'Setter must have exactly one formal parameter',
|
|
67427
67478
|
BadSetterRestParameter: 'Setter function argument must not be a rest parameter',
|
|
@@ -67482,8 +67533,8 @@ function requireEsprima$1 () {
|
|
|
67482
67533
|
UnterminatedRegExp: 'Invalid regular expression: missing /'
|
|
67483
67534
|
};
|
|
67484
67535
|
},
|
|
67485
|
-
function(module, exports, __webpack_require__) {
|
|
67486
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67536
|
+
function(module, exports$1, __webpack_require__) {
|
|
67537
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67487
67538
|
var assert_1 = __webpack_require__(9);
|
|
67488
67539
|
var character_1 = __webpack_require__(4);
|
|
67489
67540
|
var messages_1 = __webpack_require__(11);
|
|
@@ -68565,25 +68616,25 @@ function requireEsprima$1 () {
|
|
|
68565
68616
|
};
|
|
68566
68617
|
return Scanner;
|
|
68567
68618
|
}());
|
|
68568
|
-
exports.Scanner = Scanner;
|
|
68619
|
+
exports$1.Scanner = Scanner;
|
|
68569
68620
|
},
|
|
68570
|
-
function(module, exports) {
|
|
68571
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68572
|
-
exports.TokenName = {};
|
|
68573
|
-
exports.TokenName[1 ] = 'Boolean';
|
|
68574
|
-
exports.TokenName[2 ] = '<end>';
|
|
68575
|
-
exports.TokenName[3 ] = 'Identifier';
|
|
68576
|
-
exports.TokenName[4 ] = 'Keyword';
|
|
68577
|
-
exports.TokenName[5 ] = 'Null';
|
|
68578
|
-
exports.TokenName[6 ] = 'Numeric';
|
|
68579
|
-
exports.TokenName[7 ] = 'Punctuator';
|
|
68580
|
-
exports.TokenName[8 ] = 'String';
|
|
68581
|
-
exports.TokenName[9 ] = 'RegularExpression';
|
|
68582
|
-
exports.TokenName[10 ] = 'Template';
|
|
68621
|
+
function(module, exports$1) {
|
|
68622
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
68623
|
+
exports$1.TokenName = {};
|
|
68624
|
+
exports$1.TokenName[1 ] = 'Boolean';
|
|
68625
|
+
exports$1.TokenName[2 ] = '<end>';
|
|
68626
|
+
exports$1.TokenName[3 ] = 'Identifier';
|
|
68627
|
+
exports$1.TokenName[4 ] = 'Keyword';
|
|
68628
|
+
exports$1.TokenName[5 ] = 'Null';
|
|
68629
|
+
exports$1.TokenName[6 ] = 'Numeric';
|
|
68630
|
+
exports$1.TokenName[7 ] = 'Punctuator';
|
|
68631
|
+
exports$1.TokenName[8 ] = 'String';
|
|
68632
|
+
exports$1.TokenName[9 ] = 'RegularExpression';
|
|
68633
|
+
exports$1.TokenName[10 ] = 'Template';
|
|
68583
68634
|
},
|
|
68584
|
-
function(module, exports) {
|
|
68585
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68586
|
-
exports.XHTMLEntities = {
|
|
68635
|
+
function(module, exports$1) {
|
|
68636
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
68637
|
+
exports$1.XHTMLEntities = {
|
|
68587
68638
|
quot: '\u0022',
|
|
68588
68639
|
amp: '\u0026',
|
|
68589
68640
|
apos: '\u0027',
|
|
@@ -68838,8 +68889,8 @@ function requireEsprima$1 () {
|
|
|
68838
68889
|
rang: '\u27E9'
|
|
68839
68890
|
};
|
|
68840
68891
|
},
|
|
68841
|
-
function(module, exports, __webpack_require__) {
|
|
68842
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68892
|
+
function(module, exports$1, __webpack_require__) {
|
|
68893
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
68843
68894
|
var error_handler_1 = __webpack_require__(10);
|
|
68844
68895
|
var scanner_1 = __webpack_require__(12);
|
|
68845
68896
|
var token_1 = __webpack_require__(13);
|
|
@@ -68973,7 +69024,7 @@ function requireEsprima$1 () {
|
|
|
68973
69024
|
};
|
|
68974
69025
|
return Tokenizer;
|
|
68975
69026
|
}());
|
|
68976
|
-
exports.Tokenizer = Tokenizer;
|
|
69027
|
+
exports$1.Tokenizer = Tokenizer;
|
|
68977
69028
|
}
|
|
68978
69029
|
])
|
|
68979
69030
|
});
|
|
@@ -70068,8 +70119,8 @@ var hasRequiredPath;
|
|
|
70068
70119
|
function requirePath () {
|
|
70069
70120
|
if (hasRequiredPath) return path.exports;
|
|
70070
70121
|
hasRequiredPath = 1;
|
|
70071
|
-
(function (module, exports) {
|
|
70072
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70122
|
+
(function (module, exports$1) {
|
|
70123
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70073
70124
|
var tslib_1 = require$$0;
|
|
70074
70125
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70075
70126
|
var Op = Object.prototype;
|
|
@@ -70371,8 +70422,8 @@ function requirePath () {
|
|
|
70371
70422
|
};
|
|
70372
70423
|
return Path;
|
|
70373
70424
|
}
|
|
70374
|
-
exports.default = pathPlugin;
|
|
70375
|
-
module.exports = exports["default"];
|
|
70425
|
+
exports$1.default = pathPlugin;
|
|
70426
|
+
module.exports = exports$1["default"];
|
|
70376
70427
|
} (path, path.exports));
|
|
70377
70428
|
return path.exports;
|
|
70378
70429
|
}
|
|
@@ -70384,8 +70435,8 @@ var hasRequiredScope;
|
|
|
70384
70435
|
function requireScope () {
|
|
70385
70436
|
if (hasRequiredScope) return scope.exports;
|
|
70386
70437
|
hasRequiredScope = 1;
|
|
70387
|
-
(function (module, exports) {
|
|
70388
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70438
|
+
(function (module, exports$1) {
|
|
70439
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70389
70440
|
var tslib_1 = require$$0;
|
|
70390
70441
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70391
70442
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
@@ -70670,8 +70721,8 @@ function requireScope () {
|
|
|
70670
70721
|
};
|
|
70671
70722
|
return Scope;
|
|
70672
70723
|
}
|
|
70673
|
-
exports.default = scopePlugin;
|
|
70674
|
-
module.exports = exports["default"];
|
|
70724
|
+
exports$1.default = scopePlugin;
|
|
70725
|
+
module.exports = exports$1["default"];
|
|
70675
70726
|
} (scope, scope.exports));
|
|
70676
70727
|
return scope.exports;
|
|
70677
70728
|
}
|
|
@@ -70681,8 +70732,8 @@ var hasRequiredNodePath;
|
|
|
70681
70732
|
function requireNodePath () {
|
|
70682
70733
|
if (hasRequiredNodePath) return nodePath.exports;
|
|
70683
70734
|
hasRequiredNodePath = 1;
|
|
70684
|
-
(function (module, exports) {
|
|
70685
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70735
|
+
(function (module, exports$1) {
|
|
70736
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70686
70737
|
var tslib_1 = require$$0;
|
|
70687
70738
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70688
70739
|
var path_1 = tslib_1.__importDefault(requirePath());
|
|
@@ -71055,8 +71106,8 @@ function requireNodePath () {
|
|
|
71055
71106
|
}
|
|
71056
71107
|
return NodePath;
|
|
71057
71108
|
}
|
|
71058
|
-
exports.default = nodePathPlugin;
|
|
71059
|
-
module.exports = exports["default"];
|
|
71109
|
+
exports$1.default = nodePathPlugin;
|
|
71110
|
+
module.exports = exports$1["default"];
|
|
71060
71111
|
} (nodePath, nodePath.exports));
|
|
71061
71112
|
return nodePath.exports;
|
|
71062
71113
|
}
|
|
@@ -71066,8 +71117,8 @@ var hasRequiredPathVisitor;
|
|
|
71066
71117
|
function requirePathVisitor () {
|
|
71067
71118
|
if (hasRequiredPathVisitor) return pathVisitor.exports;
|
|
71068
71119
|
hasRequiredPathVisitor = 1;
|
|
71069
|
-
(function (module, exports) {
|
|
71070
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71120
|
+
(function (module, exports$1) {
|
|
71121
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71071
71122
|
var tslib_1 = require$$0;
|
|
71072
71123
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71073
71124
|
var node_path_1 = tslib_1.__importDefault(requireNodePath());
|
|
@@ -71368,8 +71419,8 @@ function requirePathVisitor () {
|
|
|
71368
71419
|
};
|
|
71369
71420
|
return PathVisitor;
|
|
71370
71421
|
}
|
|
71371
|
-
exports.default = pathVisitorPlugin;
|
|
71372
|
-
module.exports = exports["default"];
|
|
71422
|
+
exports$1.default = pathVisitorPlugin;
|
|
71423
|
+
module.exports = exports$1["default"];
|
|
71373
71424
|
} (pathVisitor, pathVisitor.exports));
|
|
71374
71425
|
return pathVisitor.exports;
|
|
71375
71426
|
}
|
|
@@ -71381,8 +71432,8 @@ var hasRequiredEquiv;
|
|
|
71381
71432
|
function requireEquiv () {
|
|
71382
71433
|
if (hasRequiredEquiv) return equiv.exports;
|
|
71383
71434
|
hasRequiredEquiv = 1;
|
|
71384
|
-
(function (module, exports) {
|
|
71385
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71435
|
+
(function (module, exports$1) {
|
|
71436
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71386
71437
|
var tslib_1 = require$$0;
|
|
71387
71438
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71388
71439
|
function default_1(fork) {
|
|
@@ -71530,8 +71581,8 @@ function requireEquiv () {
|
|
|
71530
71581
|
}
|
|
71531
71582
|
return astNodesAreEquivalent;
|
|
71532
71583
|
}
|
|
71533
|
-
exports.default = default_1;
|
|
71534
|
-
module.exports = exports["default"];
|
|
71584
|
+
exports$1.default = default_1;
|
|
71585
|
+
module.exports = exports$1["default"];
|
|
71535
71586
|
} (equiv, equiv.exports));
|
|
71536
71587
|
return equiv.exports;
|
|
71537
71588
|
}
|
|
@@ -71541,8 +71592,8 @@ var hasRequiredFork;
|
|
|
71541
71592
|
function requireFork () {
|
|
71542
71593
|
if (hasRequiredFork) return fork.exports;
|
|
71543
71594
|
hasRequiredFork = 1;
|
|
71544
|
-
(function (module, exports) {
|
|
71545
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71595
|
+
(function (module, exports$1) {
|
|
71596
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71546
71597
|
var tslib_1 = require$$0;
|
|
71547
71598
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71548
71599
|
var path_visitor_1 = tslib_1.__importDefault(requirePathVisitor());
|
|
@@ -71576,7 +71627,7 @@ function requireFork () {
|
|
|
71576
71627
|
visit: PathVisitor.visit,
|
|
71577
71628
|
};
|
|
71578
71629
|
}
|
|
71579
|
-
exports.default = default_1;
|
|
71630
|
+
exports$1.default = default_1;
|
|
71580
71631
|
function createFork() {
|
|
71581
71632
|
var used = [];
|
|
71582
71633
|
var usedResult = [];
|
|
@@ -71592,7 +71643,7 @@ function requireFork () {
|
|
|
71592
71643
|
var fork = { use: use };
|
|
71593
71644
|
return fork;
|
|
71594
71645
|
}
|
|
71595
|
-
module.exports = exports["default"];
|
|
71646
|
+
module.exports = exports$1["default"];
|
|
71596
71647
|
} (fork, fork.exports));
|
|
71597
71648
|
return fork.exports;
|
|
71598
71649
|
}
|
|
@@ -71606,8 +71657,8 @@ var hasRequiredShared;
|
|
|
71606
71657
|
function requireShared () {
|
|
71607
71658
|
if (hasRequiredShared) return shared.exports;
|
|
71608
71659
|
hasRequiredShared = 1;
|
|
71609
|
-
(function (module, exports) {
|
|
71610
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71660
|
+
(function (module, exports$1) {
|
|
71661
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71611
71662
|
var tslib_1 = require$$0;
|
|
71612
71663
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71613
71664
|
function default_1(fork) {
|
|
@@ -71643,8 +71694,8 @@ function requireShared () {
|
|
|
71643
71694
|
isPrimitive: isPrimitive,
|
|
71644
71695
|
};
|
|
71645
71696
|
}
|
|
71646
|
-
exports.default = default_1;
|
|
71647
|
-
module.exports = exports["default"];
|
|
71697
|
+
exports$1.default = default_1;
|
|
71698
|
+
module.exports = exports$1["default"];
|
|
71648
71699
|
} (shared, shared.exports));
|
|
71649
71700
|
return shared.exports;
|
|
71650
71701
|
}
|
|
@@ -71654,8 +71705,8 @@ var hasRequiredCore;
|
|
|
71654
71705
|
function requireCore () {
|
|
71655
71706
|
if (hasRequiredCore) return core.exports;
|
|
71656
71707
|
hasRequiredCore = 1;
|
|
71657
|
-
(function (module, exports) {
|
|
71658
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71708
|
+
(function (module, exports$1) {
|
|
71709
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71659
71710
|
var tslib_1 = require$$0;
|
|
71660
71711
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71661
71712
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -71930,8 +71981,8 @@ function requireCore () {
|
|
|
71930
71981
|
.field("leading", Boolean, defaults["true"])
|
|
71931
71982
|
.field("trailing", Boolean, defaults["false"]);
|
|
71932
71983
|
}
|
|
71933
|
-
exports.default = default_1;
|
|
71934
|
-
module.exports = exports["default"];
|
|
71984
|
+
exports$1.default = default_1;
|
|
71985
|
+
module.exports = exports$1["default"];
|
|
71935
71986
|
} (core, core.exports));
|
|
71936
71987
|
return core.exports;
|
|
71937
71988
|
}
|
|
@@ -71943,8 +71994,8 @@ var hasRequiredEs6;
|
|
|
71943
71994
|
function requireEs6 () {
|
|
71944
71995
|
if (hasRequiredEs6) return es6.exports;
|
|
71945
71996
|
hasRequiredEs6 = 1;
|
|
71946
|
-
(function (module, exports) {
|
|
71947
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71997
|
+
(function (module, exports$1) {
|
|
71998
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71948
71999
|
var tslib_1 = require$$0;
|
|
71949
72000
|
var core_1 = tslib_1.__importDefault(requireCore());
|
|
71950
72001
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72119,8 +72170,8 @@ function requireEs6 () {
|
|
|
72119
72170
|
.field("value", { "cooked": String, "raw": String })
|
|
72120
72171
|
.field("tail", Boolean);
|
|
72121
72172
|
}
|
|
72122
|
-
exports.default = default_1;
|
|
72123
|
-
module.exports = exports["default"];
|
|
72173
|
+
exports$1.default = default_1;
|
|
72174
|
+
module.exports = exports$1["default"];
|
|
72124
72175
|
} (es6, es6.exports));
|
|
72125
72176
|
return es6.exports;
|
|
72126
72177
|
}
|
|
@@ -72132,8 +72183,8 @@ var hasRequiredEs7;
|
|
|
72132
72183
|
function requireEs7 () {
|
|
72133
72184
|
if (hasRequiredEs7) return es7.exports;
|
|
72134
72185
|
hasRequiredEs7 = 1;
|
|
72135
|
-
(function (module, exports) {
|
|
72136
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72186
|
+
(function (module, exports$1) {
|
|
72187
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72137
72188
|
var tslib_1 = require$$0;
|
|
72138
72189
|
var es6_1 = tslib_1.__importDefault(requireEs6());
|
|
72139
72190
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72164,8 +72215,8 @@ function requireEs7 () {
|
|
|
72164
72215
|
.field("argument", or(def("Expression"), null))
|
|
72165
72216
|
.field("all", Boolean, defaults["false"]);
|
|
72166
72217
|
}
|
|
72167
|
-
exports.default = default_1;
|
|
72168
|
-
module.exports = exports["default"];
|
|
72218
|
+
exports$1.default = default_1;
|
|
72219
|
+
module.exports = exports$1["default"];
|
|
72169
72220
|
} (es7, es7.exports));
|
|
72170
72221
|
return es7.exports;
|
|
72171
72222
|
}
|
|
@@ -72177,8 +72228,8 @@ var hasRequiredEs2020;
|
|
|
72177
72228
|
function requireEs2020 () {
|
|
72178
72229
|
if (hasRequiredEs2020) return es2020.exports;
|
|
72179
72230
|
hasRequiredEs2020 = 1;
|
|
72180
|
-
(function (module, exports) {
|
|
72181
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72231
|
+
(function (module, exports$1) {
|
|
72232
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72182
72233
|
var tslib_1 = require$$0;
|
|
72183
72234
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72184
72235
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72191,8 +72242,8 @@ function requireEs2020 () {
|
|
|
72191
72242
|
.build("source")
|
|
72192
72243
|
.field("source", def("Expression"));
|
|
72193
72244
|
}
|
|
72194
|
-
exports.default = default_1;
|
|
72195
|
-
module.exports = exports["default"];
|
|
72245
|
+
exports$1.default = default_1;
|
|
72246
|
+
module.exports = exports$1["default"];
|
|
72196
72247
|
} (es2020, es2020.exports));
|
|
72197
72248
|
return es2020.exports;
|
|
72198
72249
|
}
|
|
@@ -72204,8 +72255,8 @@ var hasRequiredJsx;
|
|
|
72204
72255
|
function requireJsx () {
|
|
72205
72256
|
if (hasRequiredJsx) return jsx.exports;
|
|
72206
72257
|
hasRequiredJsx = 1;
|
|
72207
|
-
(function (module, exports) {
|
|
72208
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72258
|
+
(function (module, exports$1) {
|
|
72259
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72209
72260
|
var tslib_1 = require$$0;
|
|
72210
72261
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72211
72262
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72298,8 +72349,8 @@ function requireJsx () {
|
|
|
72298
72349
|
.build("expression")
|
|
72299
72350
|
.field("expression", def("Expression"));
|
|
72300
72351
|
}
|
|
72301
|
-
exports.default = default_1;
|
|
72302
|
-
module.exports = exports["default"];
|
|
72352
|
+
exports$1.default = default_1;
|
|
72353
|
+
module.exports = exports$1["default"];
|
|
72303
72354
|
} (jsx, jsx.exports));
|
|
72304
72355
|
return jsx.exports;
|
|
72305
72356
|
}
|
|
@@ -72313,8 +72364,8 @@ var hasRequiredTypeAnnotations;
|
|
|
72313
72364
|
function requireTypeAnnotations () {
|
|
72314
72365
|
if (hasRequiredTypeAnnotations) return typeAnnotations.exports;
|
|
72315
72366
|
hasRequiredTypeAnnotations = 1;
|
|
72316
|
-
(function (module, exports) {
|
|
72317
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72367
|
+
(function (module, exports$1) {
|
|
72368
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72318
72369
|
var tslib_1 = require$$0;
|
|
72319
72370
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
72320
72371
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -72346,8 +72397,8 @@ function requireTypeAnnotations () {
|
|
|
72346
72397
|
.field("implements", or([def("ClassImplements")], [def("TSExpressionWithTypeArguments")]), defaults.emptyArray);
|
|
72347
72398
|
});
|
|
72348
72399
|
}
|
|
72349
|
-
exports.default = default_1;
|
|
72350
|
-
module.exports = exports["default"];
|
|
72400
|
+
exports$1.default = default_1;
|
|
72401
|
+
module.exports = exports$1["default"];
|
|
72351
72402
|
} (typeAnnotations, typeAnnotations.exports));
|
|
72352
72403
|
return typeAnnotations.exports;
|
|
72353
72404
|
}
|
|
@@ -72357,8 +72408,8 @@ var hasRequiredFlow;
|
|
|
72357
72408
|
function requireFlow () {
|
|
72358
72409
|
if (hasRequiredFlow) return flow.exports;
|
|
72359
72410
|
hasRequiredFlow = 1;
|
|
72360
|
-
(function (module, exports) {
|
|
72361
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72411
|
+
(function (module, exports$1) {
|
|
72412
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72362
72413
|
var tslib_1 = require$$0;
|
|
72363
72414
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72364
72415
|
var type_annotations_1 = tslib_1.__importDefault(requireTypeAnnotations());
|
|
@@ -72643,8 +72694,8 @@ function requireFlow () {
|
|
|
72643
72694
|
def("NewExpression")
|
|
72644
72695
|
.field("typeArguments", or(null, def("TypeParameterInstantiation")), defaults["null"]);
|
|
72645
72696
|
}
|
|
72646
|
-
exports.default = default_1;
|
|
72647
|
-
module.exports = exports["default"];
|
|
72697
|
+
exports$1.default = default_1;
|
|
72698
|
+
module.exports = exports$1["default"];
|
|
72648
72699
|
} (flow, flow.exports));
|
|
72649
72700
|
return flow.exports;
|
|
72650
72701
|
}
|
|
@@ -72656,8 +72707,8 @@ var hasRequiredEsprima;
|
|
|
72656
72707
|
function requireEsprima () {
|
|
72657
72708
|
if (hasRequiredEsprima) return esprima.exports;
|
|
72658
72709
|
hasRequiredEsprima = 1;
|
|
72659
|
-
(function (module, exports) {
|
|
72660
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72710
|
+
(function (module, exports$1) {
|
|
72711
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72661
72712
|
var tslib_1 = require$$0;
|
|
72662
72713
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72663
72714
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72700,8 +72751,8 @@ function requireEsprima () {
|
|
|
72700
72751
|
.bases("Comment")
|
|
72701
72752
|
.build("value", "leading", "trailing");
|
|
72702
72753
|
}
|
|
72703
|
-
exports.default = default_1;
|
|
72704
|
-
module.exports = exports["default"];
|
|
72754
|
+
exports$1.default = default_1;
|
|
72755
|
+
module.exports = exports$1["default"];
|
|
72705
72756
|
} (esprima, esprima.exports));
|
|
72706
72757
|
return esprima.exports;
|
|
72707
72758
|
}
|
|
@@ -72715,8 +72766,8 @@ var hasRequiredBabelCore;
|
|
|
72715
72766
|
function requireBabelCore () {
|
|
72716
72767
|
if (hasRequiredBabelCore) return babelCore.exports;
|
|
72717
72768
|
hasRequiredBabelCore = 1;
|
|
72718
|
-
(function (module, exports) {
|
|
72719
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72769
|
+
(function (module, exports$1) {
|
|
72770
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72720
72771
|
var tslib_1 = require$$0;
|
|
72721
72772
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
72722
72773
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -72961,8 +73012,8 @@ function requireBabelCore () {
|
|
|
72961
73012
|
.bases("Expression")
|
|
72962
73013
|
.build();
|
|
72963
73014
|
}
|
|
72964
|
-
exports.default = default_1;
|
|
72965
|
-
module.exports = exports["default"];
|
|
73015
|
+
exports$1.default = default_1;
|
|
73016
|
+
module.exports = exports$1["default"];
|
|
72966
73017
|
} (babelCore, babelCore.exports));
|
|
72967
73018
|
return babelCore.exports;
|
|
72968
73019
|
}
|
|
@@ -72972,8 +73023,8 @@ var hasRequiredBabel;
|
|
|
72972
73023
|
function requireBabel () {
|
|
72973
73024
|
if (hasRequiredBabel) return babel.exports;
|
|
72974
73025
|
hasRequiredBabel = 1;
|
|
72975
|
-
(function (module, exports) {
|
|
72976
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73026
|
+
(function (module, exports$1) {
|
|
73027
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72977
73028
|
var tslib_1 = require$$0;
|
|
72978
73029
|
var babel_core_1 = tslib_1.__importDefault(requireBabelCore());
|
|
72979
73030
|
var flow_1 = tslib_1.__importDefault(requireFlow());
|
|
@@ -72981,8 +73032,8 @@ function requireBabel () {
|
|
|
72981
73032
|
fork.use(babel_core_1.default);
|
|
72982
73033
|
fork.use(flow_1.default);
|
|
72983
73034
|
}
|
|
72984
|
-
exports.default = default_1;
|
|
72985
|
-
module.exports = exports["default"];
|
|
73035
|
+
exports$1.default = default_1;
|
|
73036
|
+
module.exports = exports$1["default"];
|
|
72986
73037
|
} (babel, babel.exports));
|
|
72987
73038
|
return babel.exports;
|
|
72988
73039
|
}
|
|
@@ -72994,8 +73045,8 @@ var hasRequiredTypescript;
|
|
|
72994
73045
|
function requireTypescript () {
|
|
72995
73046
|
if (hasRequiredTypescript) return typescript.exports;
|
|
72996
73047
|
hasRequiredTypescript = 1;
|
|
72997
|
-
(function (module, exports) {
|
|
72998
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73048
|
+
(function (module, exports$1) {
|
|
73049
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72999
73050
|
var tslib_1 = require$$0;
|
|
73000
73051
|
var babel_core_1 = tslib_1.__importDefault(requireBabelCore());
|
|
73001
73052
|
var type_annotations_1 = tslib_1.__importDefault(requireTypeAnnotations());
|
|
@@ -73320,8 +73371,8 @@ function requireTypescript () {
|
|
|
73320
73371
|
.field("body", [or(def("MethodDefinition"), def("VariableDeclarator"), def("ClassPropertyDefinition"), def("ClassProperty"), def("ClassPrivateProperty"), def("ClassMethod"), def("ClassPrivateMethod"),
|
|
73321
73372
|
def("TSDeclareMethod"), TSTypeMember)]);
|
|
73322
73373
|
}
|
|
73323
|
-
exports.default = default_1;
|
|
73324
|
-
module.exports = exports["default"];
|
|
73374
|
+
exports$1.default = default_1;
|
|
73375
|
+
module.exports = exports$1["default"];
|
|
73325
73376
|
} (typescript, typescript.exports));
|
|
73326
73377
|
return typescript.exports;
|
|
73327
73378
|
}
|
|
@@ -73333,8 +73384,8 @@ var hasRequiredEsProposals;
|
|
|
73333
73384
|
function requireEsProposals () {
|
|
73334
73385
|
if (hasRequiredEsProposals) return esProposals.exports;
|
|
73335
73386
|
hasRequiredEsProposals = 1;
|
|
73336
|
-
(function (module, exports) {
|
|
73337
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73387
|
+
(function (module, exports$1) {
|
|
73388
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73338
73389
|
var tslib_1 = require$$0;
|
|
73339
73390
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
73340
73391
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -73359,8 +73410,8 @@ function requireEsProposals () {
|
|
|
73359
73410
|
def("LogicalExpression")
|
|
73360
73411
|
.field("operator", LogicalOperator);
|
|
73361
73412
|
}
|
|
73362
|
-
exports.default = default_1;
|
|
73363
|
-
module.exports = exports["default"];
|
|
73413
|
+
exports$1.default = default_1;
|
|
73414
|
+
module.exports = exports$1["default"];
|
|
73364
73415
|
} (esProposals, esProposals.exports));
|
|
73365
73416
|
return esProposals.exports;
|
|
73366
73417
|
}
|
|
@@ -73372,11 +73423,11 @@ var hasRequiredNamedTypes;
|
|
|
73372
73423
|
function requireNamedTypes () {
|
|
73373
73424
|
if (hasRequiredNamedTypes) return namedTypes;
|
|
73374
73425
|
hasRequiredNamedTypes = 1;
|
|
73375
|
-
(function (exports) {
|
|
73376
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73377
|
-
exports.namedTypes = void 0;
|
|
73426
|
+
(function (exports$1) {
|
|
73427
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73428
|
+
exports$1.namedTypes = void 0;
|
|
73378
73429
|
(function (namedTypes) {
|
|
73379
|
-
})(exports.namedTypes || (exports.namedTypes = {}));
|
|
73430
|
+
})(exports$1.namedTypes || (exports$1.namedTypes = {}));
|
|
73380
73431
|
} (namedTypes));
|
|
73381
73432
|
return namedTypes;
|
|
73382
73433
|
}
|
|
@@ -73386,9 +73437,9 @@ var hasRequiredMain;
|
|
|
73386
73437
|
function requireMain () {
|
|
73387
73438
|
if (hasRequiredMain) return main;
|
|
73388
73439
|
hasRequiredMain = 1;
|
|
73389
|
-
(function (exports) {
|
|
73390
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73391
|
-
exports.visit = exports.use = exports.Type = exports.someField = exports.PathVisitor = exports.Path = exports.NodePath = exports.namedTypes = exports.getSupertypeNames = exports.getFieldValue = exports.getFieldNames = exports.getBuilderName = exports.finalize = exports.eachField = exports.defineMethod = exports.builtInTypes = exports.builders = exports.astNodesAreEquivalent = void 0;
|
|
73440
|
+
(function (exports$1) {
|
|
73441
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73442
|
+
exports$1.visit = exports$1.use = exports$1.Type = exports$1.someField = exports$1.PathVisitor = exports$1.Path = exports$1.NodePath = exports$1.namedTypes = exports$1.getSupertypeNames = exports$1.getFieldValue = exports$1.getFieldNames = exports$1.getBuilderName = exports$1.finalize = exports$1.eachField = exports$1.defineMethod = exports$1.builtInTypes = exports$1.builders = exports$1.astNodesAreEquivalent = void 0;
|
|
73392
73443
|
var tslib_1 = require$$0;
|
|
73393
73444
|
var fork_1 = tslib_1.__importDefault(requireFork());
|
|
73394
73445
|
var core_1 = tslib_1.__importDefault(requireCore());
|
|
@@ -73402,7 +73453,7 @@ function requireMain () {
|
|
|
73402
73453
|
var typescript_1 = tslib_1.__importDefault(requireTypescript());
|
|
73403
73454
|
var es_proposals_1 = tslib_1.__importDefault(requireEsProposals());
|
|
73404
73455
|
var namedTypes_1 = requireNamedTypes();
|
|
73405
|
-
Object.defineProperty(exports, "namedTypes", { enumerable: true, get: function () { return namedTypes_1.namedTypes; } });
|
|
73456
|
+
Object.defineProperty(exports$1, "namedTypes", { enumerable: true, get: function () { return namedTypes_1.namedTypes; } });
|
|
73406
73457
|
var _a = fork_1.default([
|
|
73407
73458
|
core_1.default,
|
|
73408
73459
|
es6_1.default,
|
|
@@ -73415,23 +73466,23 @@ function requireMain () {
|
|
|
73415
73466
|
typescript_1.default,
|
|
73416
73467
|
es_proposals_1.default,
|
|
73417
73468
|
]), astNodesAreEquivalent = _a.astNodesAreEquivalent, builders = _a.builders, builtInTypes = _a.builtInTypes, defineMethod = _a.defineMethod, eachField = _a.eachField, finalize = _a.finalize, getBuilderName = _a.getBuilderName, getFieldNames = _a.getFieldNames, getFieldValue = _a.getFieldValue, getSupertypeNames = _a.getSupertypeNames, n = _a.namedTypes, NodePath = _a.NodePath, Path = _a.Path, PathVisitor = _a.PathVisitor, someField = _a.someField, Type = _a.Type, use = _a.use, visit = _a.visit;
|
|
73418
|
-
exports.astNodesAreEquivalent = astNodesAreEquivalent;
|
|
73419
|
-
exports.builders = builders;
|
|
73420
|
-
exports.builtInTypes = builtInTypes;
|
|
73421
|
-
exports.defineMethod = defineMethod;
|
|
73422
|
-
exports.eachField = eachField;
|
|
73423
|
-
exports.finalize = finalize;
|
|
73424
|
-
exports.getBuilderName = getBuilderName;
|
|
73425
|
-
exports.getFieldNames = getFieldNames;
|
|
73426
|
-
exports.getFieldValue = getFieldValue;
|
|
73427
|
-
exports.getSupertypeNames = getSupertypeNames;
|
|
73428
|
-
exports.NodePath = NodePath;
|
|
73429
|
-
exports.Path = Path;
|
|
73430
|
-
exports.PathVisitor = PathVisitor;
|
|
73431
|
-
exports.someField = someField;
|
|
73432
|
-
exports.Type = Type;
|
|
73433
|
-
exports.use = use;
|
|
73434
|
-
exports.visit = visit;
|
|
73469
|
+
exports$1.astNodesAreEquivalent = astNodesAreEquivalent;
|
|
73470
|
+
exports$1.builders = builders;
|
|
73471
|
+
exports$1.builtInTypes = builtInTypes;
|
|
73472
|
+
exports$1.defineMethod = defineMethod;
|
|
73473
|
+
exports$1.eachField = eachField;
|
|
73474
|
+
exports$1.finalize = finalize;
|
|
73475
|
+
exports$1.getBuilderName = getBuilderName;
|
|
73476
|
+
exports$1.getFieldNames = getFieldNames;
|
|
73477
|
+
exports$1.getFieldValue = getFieldValue;
|
|
73478
|
+
exports$1.getSupertypeNames = getSupertypeNames;
|
|
73479
|
+
exports$1.NodePath = NodePath;
|
|
73480
|
+
exports$1.Path = Path;
|
|
73481
|
+
exports$1.PathVisitor = PathVisitor;
|
|
73482
|
+
exports$1.someField = someField;
|
|
73483
|
+
exports$1.Type = Type;
|
|
73484
|
+
exports$1.use = use;
|
|
73485
|
+
exports$1.visit = visit;
|
|
73435
73486
|
Object.assign(namedTypes_1.namedTypes, n);
|
|
73436
73487
|
} (main));
|
|
73437
73488
|
return main;
|
|
@@ -73685,7 +73736,7 @@ var hasRequiredDist$4;
|
|
|
73685
73736
|
function requireDist$4 () {
|
|
73686
73737
|
if (hasRequiredDist$4) return dist$1;
|
|
73687
73738
|
hasRequiredDist$4 = 1;
|
|
73688
|
-
(function (exports) {
|
|
73739
|
+
(function (exports$1) {
|
|
73689
73740
|
var __createBinding = (dist$1 && dist$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
73690
73741
|
if (k2 === undefined) k2 = k;
|
|
73691
73742
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -73697,12 +73748,12 @@ function requireDist$4 () {
|
|
|
73697
73748
|
if (k2 === undefined) k2 = k;
|
|
73698
73749
|
o[k2] = m[k];
|
|
73699
73750
|
}));
|
|
73700
|
-
var __exportStar = (dist$1 && dist$1.__exportStar) || function(m, exports) {
|
|
73701
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
73751
|
+
var __exportStar = (dist$1 && dist$1.__exportStar) || function(m, exports$1) {
|
|
73752
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
|
|
73702
73753
|
};
|
|
73703
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73704
|
-
__exportStar(requireDegenerator(), exports);
|
|
73705
|
-
__exportStar(requireCompile(), exports);
|
|
73754
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73755
|
+
__exportStar(requireDegenerator(), exports$1);
|
|
73756
|
+
__exportStar(requireCompile(), exports$1);
|
|
73706
73757
|
} (dist$1));
|
|
73707
73758
|
return dist$1;
|
|
73708
73759
|
}
|
|
@@ -74110,28 +74161,28 @@ var hasRequiredIp;
|
|
|
74110
74161
|
function requireIp () {
|
|
74111
74162
|
if (hasRequiredIp) return ip;
|
|
74112
74163
|
hasRequiredIp = 1;
|
|
74113
|
-
(function (exports) {
|
|
74164
|
+
(function (exports$1) {
|
|
74114
74165
|
var __importDefault = (ip && ip.__importDefault) || function (mod) {
|
|
74115
74166
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
74116
74167
|
};
|
|
74117
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74118
|
-
exports.ip = void 0;
|
|
74168
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
74169
|
+
exports$1.ip = void 0;
|
|
74119
74170
|
const os_1 = __importDefault(require$$0$1);
|
|
74120
|
-
exports.ip = {
|
|
74171
|
+
exports$1.ip = {
|
|
74121
74172
|
address() {
|
|
74122
74173
|
const interfaces = os_1.default.networkInterfaces();
|
|
74123
74174
|
const family = normalizeFamily();
|
|
74124
74175
|
const all = Object.values(interfaces).map((addrs = []) => {
|
|
74125
74176
|
const addresses = addrs.filter((details) => {
|
|
74126
74177
|
const detailsFamily = normalizeFamily(details.family);
|
|
74127
|
-
if (detailsFamily !== family || exports.ip.isLoopback(details.address)) {
|
|
74178
|
+
if (detailsFamily !== family || exports$1.ip.isLoopback(details.address)) {
|
|
74128
74179
|
return false;
|
|
74129
74180
|
}
|
|
74130
74181
|
return true;
|
|
74131
74182
|
});
|
|
74132
74183
|
return addresses.length ? addresses[0].address : undefined;
|
|
74133
74184
|
}).filter(Boolean);
|
|
74134
|
-
return !all.length ? exports.ip.loopback(family) : all[0];
|
|
74185
|
+
return !all.length ? exports$1.ip.loopback(family) : all[0];
|
|
74135
74186
|
},
|
|
74136
74187
|
isLoopback(addr) {
|
|
74137
74188
|
return /^(::f{4}:)?127\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})/
|
|
@@ -74336,12 +74387,12 @@ var hasRequiredDist$3;
|
|
|
74336
74387
|
function requireDist$3 () {
|
|
74337
74388
|
if (hasRequiredDist$3) return dist$2;
|
|
74338
74389
|
hasRequiredDist$3 = 1;
|
|
74339
|
-
(function (exports) {
|
|
74390
|
+
(function (exports$1) {
|
|
74340
74391
|
var __importDefault = (dist$2 && dist$2.__importDefault) || function (mod) {
|
|
74341
74392
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
74342
74393
|
};
|
|
74343
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74344
|
-
exports.sandbox = exports.createPacResolver = void 0;
|
|
74394
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
74395
|
+
exports$1.sandbox = exports$1.createPacResolver = void 0;
|
|
74345
74396
|
const degenerator_1 = requireDist$4();
|
|
74346
74397
|
const dateRange_1 = __importDefault(requireDateRange());
|
|
74347
74398
|
const dnsDomainIs_1 = __importDefault(requireDnsDomainIs());
|
|
@@ -74358,7 +74409,7 @@ function requireDist$3 () {
|
|
|
74358
74409
|
function createPacResolver(qjs, _str, _opts = {}) {
|
|
74359
74410
|
const str = Buffer.isBuffer(_str) ? _str.toString('utf8') : _str;
|
|
74360
74411
|
const context = {
|
|
74361
|
-
...exports.sandbox,
|
|
74412
|
+
...exports$1.sandbox,
|
|
74362
74413
|
..._opts.sandbox,
|
|
74363
74414
|
};
|
|
74364
74415
|
const names = Object.keys(context).filter((k) => isAsyncFunction(context[k]));
|
|
@@ -74383,8 +74434,8 @@ function requireDist$3 () {
|
|
|
74383
74434
|
});
|
|
74384
74435
|
return FindProxyForURL;
|
|
74385
74436
|
}
|
|
74386
|
-
exports.createPacResolver = createPacResolver;
|
|
74387
|
-
exports.sandbox = Object.freeze({
|
|
74437
|
+
exports$1.createPacResolver = createPacResolver;
|
|
74438
|
+
exports$1.sandbox = Object.freeze({
|
|
74388
74439
|
alert: (message = '') => console.log('%s', message),
|
|
74389
74440
|
dateRange: dateRange_1.default,
|
|
74390
74441
|
dnsDomainIs: dnsDomainIs_1.default,
|
|
@@ -74437,7 +74488,7 @@ function requireEsmHelpers () {
|
|
|
74437
74488
|
return esmHelpers;
|
|
74438
74489
|
}
|
|
74439
74490
|
|
|
74440
|
-
var module = {};
|
|
74491
|
+
var module$1 = {};
|
|
74441
74492
|
|
|
74442
74493
|
var debug = {};
|
|
74443
74494
|
|
|
@@ -74446,11 +74497,11 @@ var hasRequiredDebug;
|
|
|
74446
74497
|
function requireDebug () {
|
|
74447
74498
|
if (hasRequiredDebug) return debug;
|
|
74448
74499
|
hasRequiredDebug = 1;
|
|
74449
|
-
(function (exports) {
|
|
74450
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74451
|
-
exports.debugLog = exports.QTS_DEBUG = void 0;
|
|
74452
|
-
exports.QTS_DEBUG = Boolean(typeof process === "object" && process.env.QTS_DEBUG);
|
|
74453
|
-
exports.debugLog = exports.QTS_DEBUG ? console.log.bind(console) : () => { };
|
|
74500
|
+
(function (exports$1) {
|
|
74501
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
74502
|
+
exports$1.debugLog = exports$1.QTS_DEBUG = void 0;
|
|
74503
|
+
exports$1.QTS_DEBUG = Boolean(typeof process === "object" && process.env.QTS_DEBUG);
|
|
74504
|
+
exports$1.debugLog = exports$1.QTS_DEBUG ? console.log.bind(console) : () => { };
|
|
74454
74505
|
} (debug));
|
|
74455
74506
|
return debug;
|
|
74456
74507
|
}
|
|
@@ -75578,10 +75629,10 @@ function requireRuntime () {
|
|
|
75578
75629
|
var hasRequiredModule;
|
|
75579
75630
|
|
|
75580
75631
|
function requireModule () {
|
|
75581
|
-
if (hasRequiredModule) return module;
|
|
75632
|
+
if (hasRequiredModule) return module$1;
|
|
75582
75633
|
hasRequiredModule = 1;
|
|
75583
|
-
Object.defineProperty(module, "__esModule", { value: true });
|
|
75584
|
-
module.QuickJSWASMModule = module.applyModuleEvalRuntimeOptions = module.applyBaseRuntimeOptions = module.QuickJSModuleCallbacks = void 0;
|
|
75634
|
+
Object.defineProperty(module$1, "__esModule", { value: true });
|
|
75635
|
+
module$1.QuickJSWASMModule = module$1.applyModuleEvalRuntimeOptions = module$1.applyBaseRuntimeOptions = module$1.QuickJSModuleCallbacks = void 0;
|
|
75585
75636
|
const debug_1 = /*@__PURE__*/ requireDebug();
|
|
75586
75637
|
const errors_1 = /*@__PURE__*/ requireErrors();
|
|
75587
75638
|
const lifetime_1 = /*@__PURE__*/ requireLifetime();
|
|
@@ -75718,7 +75769,7 @@ function requireModule () {
|
|
|
75718
75769
|
return value;
|
|
75719
75770
|
}
|
|
75720
75771
|
}
|
|
75721
|
-
module.QuickJSModuleCallbacks = QuickJSModuleCallbacks;
|
|
75772
|
+
module$1.QuickJSModuleCallbacks = QuickJSModuleCallbacks;
|
|
75722
75773
|
function applyBaseRuntimeOptions(runtime, options) {
|
|
75723
75774
|
if (options.interruptHandler) {
|
|
75724
75775
|
runtime.setInterruptHandler(options.interruptHandler);
|
|
@@ -75730,7 +75781,7 @@ function requireModule () {
|
|
|
75730
75781
|
runtime.setMemoryLimit(options.memoryLimitBytes);
|
|
75731
75782
|
}
|
|
75732
75783
|
}
|
|
75733
|
-
module.applyBaseRuntimeOptions = applyBaseRuntimeOptions;
|
|
75784
|
+
module$1.applyBaseRuntimeOptions = applyBaseRuntimeOptions;
|
|
75734
75785
|
function applyModuleEvalRuntimeOptions(runtime, options) {
|
|
75735
75786
|
if (options.moduleLoader) {
|
|
75736
75787
|
runtime.setModuleLoader(options.moduleLoader);
|
|
@@ -75745,7 +75796,7 @@ function requireModule () {
|
|
|
75745
75796
|
runtime.setMaxStackSize(options.maxStackSizeBytes);
|
|
75746
75797
|
}
|
|
75747
75798
|
}
|
|
75748
|
-
module.applyModuleEvalRuntimeOptions = applyModuleEvalRuntimeOptions;
|
|
75799
|
+
module$1.applyModuleEvalRuntimeOptions = applyModuleEvalRuntimeOptions;
|
|
75749
75800
|
class QuickJSWASMModule {
|
|
75750
75801
|
constructor(module, ffi) {
|
|
75751
75802
|
this.module = module;
|
|
@@ -75798,8 +75849,8 @@ function requireModule () {
|
|
|
75798
75849
|
return this.ffi;
|
|
75799
75850
|
}
|
|
75800
75851
|
}
|
|
75801
|
-
module.QuickJSWASMModule = QuickJSWASMModule;
|
|
75802
|
-
return module;
|
|
75852
|
+
module$1.QuickJSWASMModule = QuickJSWASMModule;
|
|
75853
|
+
return module$1;
|
|
75803
75854
|
}
|
|
75804
75855
|
|
|
75805
75856
|
var moduleAsyncify = {};
|
|
@@ -76038,7 +76089,7 @@ var hasRequiredEmscriptenModule_WASM_RELEASE_SYNC;
|
|
|
76038
76089
|
function requireEmscriptenModule_WASM_RELEASE_SYNC () {
|
|
76039
76090
|
if (hasRequiredEmscriptenModule_WASM_RELEASE_SYNC) return emscriptenModule_WASM_RELEASE_SYNC.exports;
|
|
76040
76091
|
hasRequiredEmscriptenModule_WASM_RELEASE_SYNC = 1;
|
|
76041
|
-
(function (module, exports) {
|
|
76092
|
+
(function (module, exports$1) {
|
|
76042
76093
|
var QuickJSRaw = (() => {
|
|
76043
76094
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
76044
76095
|
if (typeof __filename !== 'undefined')
|
|
@@ -76428,7 +76479,7 @@ var hasRequiredVariants;
|
|
|
76428
76479
|
function requireVariants () {
|
|
76429
76480
|
if (hasRequiredVariants) return variants;
|
|
76430
76481
|
hasRequiredVariants = 1;
|
|
76431
|
-
(function (exports) {
|
|
76482
|
+
(function (exports$1) {
|
|
76432
76483
|
var __createBinding = (variants && variants.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76433
76484
|
if (k2 === undefined) k2 = k;
|
|
76434
76485
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76452,11 +76503,11 @@ function requireVariants () {
|
|
|
76452
76503
|
__setModuleDefault(result, mod);
|
|
76453
76504
|
return result;
|
|
76454
76505
|
};
|
|
76455
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76456
|
-
exports.RELEASE_ASYNC = exports.DEBUG_ASYNC = exports.RELEASE_SYNC = exports.DEBUG_SYNC = exports.memoizePromiseFactory = exports.newQuickJSAsyncWASMModule = exports.newQuickJSWASMModule = void 0;
|
|
76506
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
76507
|
+
exports$1.RELEASE_ASYNC = exports$1.DEBUG_ASYNC = exports$1.RELEASE_SYNC = exports$1.DEBUG_SYNC = exports$1.memoizePromiseFactory = exports$1.newQuickJSAsyncWASMModule = exports$1.newQuickJSWASMModule = void 0;
|
|
76457
76508
|
const esmHelpers_1 = /*@__PURE__*/ requireEsmHelpers();
|
|
76458
76509
|
async function newQuickJSWASMModule(
|
|
76459
|
-
variant = exports.RELEASE_SYNC) {
|
|
76510
|
+
variant = exports$1.RELEASE_SYNC) {
|
|
76460
76511
|
const [wasmModuleLoader, QuickJSFFI, { QuickJSWASMModule }] = await Promise.all([
|
|
76461
76512
|
variant.importModuleLoader(),
|
|
76462
76513
|
variant.importFFI(),
|
|
@@ -76467,9 +76518,9 @@ function requireVariants () {
|
|
|
76467
76518
|
const ffi = new QuickJSFFI(wasmModule);
|
|
76468
76519
|
return new QuickJSWASMModule(wasmModule, ffi);
|
|
76469
76520
|
}
|
|
76470
|
-
exports.newQuickJSWASMModule = newQuickJSWASMModule;
|
|
76521
|
+
exports$1.newQuickJSWASMModule = newQuickJSWASMModule;
|
|
76471
76522
|
async function newQuickJSAsyncWASMModule(
|
|
76472
|
-
variant = exports.RELEASE_ASYNC) {
|
|
76523
|
+
variant = exports$1.RELEASE_ASYNC) {
|
|
76473
76524
|
const [wasmModuleLoader, QuickJSAsyncFFI, { QuickJSAsyncWASMModule }] = await Promise.all([
|
|
76474
76525
|
variant.importModuleLoader(),
|
|
76475
76526
|
variant.importFFI(),
|
|
@@ -76480,15 +76531,15 @@ function requireVariants () {
|
|
|
76480
76531
|
const ffi = new QuickJSAsyncFFI(wasmModule);
|
|
76481
76532
|
return new QuickJSAsyncWASMModule(wasmModule, ffi);
|
|
76482
76533
|
}
|
|
76483
|
-
exports.newQuickJSAsyncWASMModule = newQuickJSAsyncWASMModule;
|
|
76534
|
+
exports$1.newQuickJSAsyncWASMModule = newQuickJSAsyncWASMModule;
|
|
76484
76535
|
function memoizePromiseFactory(fn) {
|
|
76485
76536
|
let promise;
|
|
76486
76537
|
return () => {
|
|
76487
76538
|
return (promise ?? (promise = fn()));
|
|
76488
76539
|
};
|
|
76489
76540
|
}
|
|
76490
|
-
exports.memoizePromiseFactory = memoizePromiseFactory;
|
|
76491
|
-
exports.DEBUG_SYNC = {
|
|
76541
|
+
exports$1.memoizePromiseFactory = memoizePromiseFactory;
|
|
76542
|
+
exports$1.DEBUG_SYNC = {
|
|
76492
76543
|
type: "sync",
|
|
76493
76544
|
async importFFI() {
|
|
76494
76545
|
throw new Error("not implemented");
|
|
@@ -76497,7 +76548,7 @@ function requireVariants () {
|
|
|
76497
76548
|
throw new Error("not implemented");
|
|
76498
76549
|
},
|
|
76499
76550
|
};
|
|
76500
|
-
exports.RELEASE_SYNC = {
|
|
76551
|
+
exports$1.RELEASE_SYNC = {
|
|
76501
76552
|
type: "sync",
|
|
76502
76553
|
async importFFI() {
|
|
76503
76554
|
const mod = await Promise.resolve().then(() => __importStar(/*@__PURE__*/ requireFfi_WASM_RELEASE_SYNC()));
|
|
@@ -76508,7 +76559,7 @@ function requireVariants () {
|
|
|
76508
76559
|
return (0, esmHelpers_1.unwrapJavascript)(mod);
|
|
76509
76560
|
},
|
|
76510
76561
|
};
|
|
76511
|
-
exports.DEBUG_ASYNC = {
|
|
76562
|
+
exports$1.DEBUG_ASYNC = {
|
|
76512
76563
|
type: "async",
|
|
76513
76564
|
async importFFI() {
|
|
76514
76565
|
throw new Error("not implemented");
|
|
@@ -76517,7 +76568,7 @@ function requireVariants () {
|
|
|
76517
76568
|
throw new Error("not implemented");
|
|
76518
76569
|
},
|
|
76519
76570
|
};
|
|
76520
|
-
exports.RELEASE_ASYNC = {
|
|
76571
|
+
exports$1.RELEASE_ASYNC = {
|
|
76521
76572
|
type: "async",
|
|
76522
76573
|
async importFFI() {
|
|
76523
76574
|
throw new Error("not implemented");
|
|
@@ -76627,7 +76678,7 @@ var hasRequiredDist$2;
|
|
|
76627
76678
|
function requireDist$2 () {
|
|
76628
76679
|
if (hasRequiredDist$2) return dist;
|
|
76629
76680
|
hasRequiredDist$2 = 1;
|
|
76630
|
-
(function (exports) {
|
|
76681
|
+
(function (exports$1) {
|
|
76631
76682
|
var __createBinding = (dist && dist.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76632
76683
|
if (k2 === undefined) k2 = k;
|
|
76633
76684
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76644,8 +76695,8 @@ function requireDist$2 () {
|
|
|
76644
76695
|
}) : function(o, v) {
|
|
76645
76696
|
o["default"] = v;
|
|
76646
76697
|
});
|
|
76647
|
-
var __exportStar = (dist && dist.__exportStar) || function(m, exports) {
|
|
76648
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
76698
|
+
var __exportStar = (dist && dist.__exportStar) || function(m, exports$1) {
|
|
76699
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$1, p)) __createBinding(exports$1, m, p);
|
|
76649
76700
|
};
|
|
76650
76701
|
var __importStar = (dist && dist.__importStar) || function (mod) {
|
|
76651
76702
|
if (mod && mod.__esModule) return mod;
|
|
@@ -76654,20 +76705,20 @@ function requireDist$2 () {
|
|
|
76654
76705
|
__setModuleDefault(result, mod);
|
|
76655
76706
|
return result;
|
|
76656
76707
|
};
|
|
76657
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76658
|
-
exports.shouldInterruptAfterDeadline = exports.newAsyncContext = exports.newAsyncRuntime = exports.getQuickJSSync = exports.getQuickJS = exports.errors = exports.RELEASE_SYNC = exports.RELEASE_ASYNC = exports.DEBUG_SYNC = exports.DEBUG_ASYNC = exports.newQuickJSAsyncWASMModule = exports.newQuickJSWASMModule = void 0;
|
|
76708
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
76709
|
+
exports$1.shouldInterruptAfterDeadline = exports$1.newAsyncContext = exports$1.newAsyncRuntime = exports$1.getQuickJSSync = exports$1.getQuickJS = exports$1.errors = exports$1.RELEASE_SYNC = exports$1.RELEASE_ASYNC = exports$1.DEBUG_SYNC = exports$1.DEBUG_ASYNC = exports$1.newQuickJSAsyncWASMModule = exports$1.newQuickJSWASMModule = void 0;
|
|
76659
76710
|
const variants_1 = /*@__PURE__*/ requireVariants();
|
|
76660
|
-
Object.defineProperty(exports, "newQuickJSWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSWASMModule; } });
|
|
76661
|
-
Object.defineProperty(exports, "newQuickJSAsyncWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSAsyncWASMModule; } });
|
|
76662
|
-
Object.defineProperty(exports, "DEBUG_ASYNC", { enumerable: true, get: function () { return variants_1.DEBUG_ASYNC; } });
|
|
76663
|
-
Object.defineProperty(exports, "DEBUG_SYNC", { enumerable: true, get: function () { return variants_1.DEBUG_SYNC; } });
|
|
76664
|
-
Object.defineProperty(exports, "RELEASE_ASYNC", { enumerable: true, get: function () { return variants_1.RELEASE_ASYNC; } });
|
|
76665
|
-
Object.defineProperty(exports, "RELEASE_SYNC", { enumerable: true, get: function () { return variants_1.RELEASE_SYNC; } });
|
|
76666
|
-
__exportStar(/*@__PURE__*/ requireVmInterface(), exports);
|
|
76667
|
-
__exportStar(/*@__PURE__*/ requireLifetime(), exports);
|
|
76668
|
-
exports.errors = __importStar(/*@__PURE__*/ requireErrors());
|
|
76669
|
-
__exportStar(/*@__PURE__*/ requireDeferredPromise(), exports);
|
|
76670
|
-
__exportStar(/*@__PURE__*/ requireModuleTest(), exports);
|
|
76711
|
+
Object.defineProperty(exports$1, "newQuickJSWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSWASMModule; } });
|
|
76712
|
+
Object.defineProperty(exports$1, "newQuickJSAsyncWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSAsyncWASMModule; } });
|
|
76713
|
+
Object.defineProperty(exports$1, "DEBUG_ASYNC", { enumerable: true, get: function () { return variants_1.DEBUG_ASYNC; } });
|
|
76714
|
+
Object.defineProperty(exports$1, "DEBUG_SYNC", { enumerable: true, get: function () { return variants_1.DEBUG_SYNC; } });
|
|
76715
|
+
Object.defineProperty(exports$1, "RELEASE_ASYNC", { enumerable: true, get: function () { return variants_1.RELEASE_ASYNC; } });
|
|
76716
|
+
Object.defineProperty(exports$1, "RELEASE_SYNC", { enumerable: true, get: function () { return variants_1.RELEASE_SYNC; } });
|
|
76717
|
+
__exportStar(/*@__PURE__*/ requireVmInterface(), exports$1);
|
|
76718
|
+
__exportStar(/*@__PURE__*/ requireLifetime(), exports$1);
|
|
76719
|
+
exports$1.errors = __importStar(/*@__PURE__*/ requireErrors());
|
|
76720
|
+
__exportStar(/*@__PURE__*/ requireDeferredPromise(), exports$1);
|
|
76721
|
+
__exportStar(/*@__PURE__*/ requireModuleTest(), exports$1);
|
|
76671
76722
|
let singleton = undefined;
|
|
76672
76723
|
let singletonPromise = undefined;
|
|
76673
76724
|
async function getQuickJS() {
|
|
@@ -76677,31 +76728,31 @@ function requireDist$2 () {
|
|
|
76677
76728
|
}));
|
|
76678
76729
|
return await singletonPromise;
|
|
76679
76730
|
}
|
|
76680
|
-
exports.getQuickJS = getQuickJS;
|
|
76731
|
+
exports$1.getQuickJS = getQuickJS;
|
|
76681
76732
|
function getQuickJSSync() {
|
|
76682
76733
|
if (!singleton) {
|
|
76683
76734
|
throw new Error("QuickJS not initialized. Await getQuickJS() at least once.");
|
|
76684
76735
|
}
|
|
76685
76736
|
return singleton;
|
|
76686
76737
|
}
|
|
76687
|
-
exports.getQuickJSSync = getQuickJSSync;
|
|
76738
|
+
exports$1.getQuickJSSync = getQuickJSSync;
|
|
76688
76739
|
async function newAsyncRuntime(options) {
|
|
76689
76740
|
const module = await (0, variants_1.newQuickJSAsyncWASMModule)();
|
|
76690
76741
|
return module.newRuntime(options);
|
|
76691
76742
|
}
|
|
76692
|
-
exports.newAsyncRuntime = newAsyncRuntime;
|
|
76743
|
+
exports$1.newAsyncRuntime = newAsyncRuntime;
|
|
76693
76744
|
async function newAsyncContext(options) {
|
|
76694
76745
|
const module = await (0, variants_1.newQuickJSAsyncWASMModule)();
|
|
76695
76746
|
return module.newContext(options);
|
|
76696
76747
|
}
|
|
76697
|
-
exports.newAsyncContext = newAsyncContext;
|
|
76748
|
+
exports$1.newAsyncContext = newAsyncContext;
|
|
76698
76749
|
function shouldInterruptAfterDeadline(deadline) {
|
|
76699
76750
|
const deadlineAsNumber = typeof deadline === "number" ? deadline : deadline.getTime();
|
|
76700
76751
|
return function () {
|
|
76701
76752
|
return Date.now() > deadlineAsNumber;
|
|
76702
76753
|
};
|
|
76703
76754
|
}
|
|
76704
|
-
exports.shouldInterruptAfterDeadline = shouldInterruptAfterDeadline;
|
|
76755
|
+
exports$1.shouldInterruptAfterDeadline = shouldInterruptAfterDeadline;
|
|
76705
76756
|
} (dist));
|
|
76706
76757
|
return dist;
|
|
76707
76758
|
}
|
|
@@ -76913,7 +76964,7 @@ var hasRequiredDist;
|
|
|
76913
76964
|
function requireDist () {
|
|
76914
76965
|
if (hasRequiredDist) return dist$b;
|
|
76915
76966
|
hasRequiredDist = 1;
|
|
76916
|
-
(function (exports) {
|
|
76967
|
+
(function (exports$1) {
|
|
76917
76968
|
var __createBinding = (dist$b && dist$b.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76918
76969
|
if (k2 === undefined) k2 = k;
|
|
76919
76970
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76940,8 +76991,8 @@ function requireDist () {
|
|
|
76940
76991
|
var __importDefault = (dist$b && dist$b.__importDefault) || function (mod) {
|
|
76941
76992
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
76942
76993
|
};
|
|
76943
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76944
|
-
exports.ProxyAgent = exports.proxies = void 0;
|
|
76994
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
76995
|
+
exports$1.ProxyAgent = exports$1.proxies = void 0;
|
|
76945
76996
|
const http = __importStar(require$$0$3);
|
|
76946
76997
|
const https = __importStar(require$$1$1);
|
|
76947
76998
|
const url_1 = require$$5;
|
|
@@ -76956,7 +77007,7 @@ function requireDist () {
|
|
|
76956
77007
|
socks: async () => (await Promise.resolve().then(() => __importStar(requireDist$8()))).SocksProxyAgent,
|
|
76957
77008
|
pac: async () => (await Promise.resolve().then(() => __importStar(requireDist$1()))).PacProxyAgent,
|
|
76958
77009
|
};
|
|
76959
|
-
exports.proxies = {
|
|
77010
|
+
exports$1.proxies = {
|
|
76960
77011
|
http: [wellKnownAgents.http, wellKnownAgents.https],
|
|
76961
77012
|
https: [wellKnownAgents.http, wellKnownAgents.https],
|
|
76962
77013
|
socks: [wellKnownAgents.socks, wellKnownAgents.socks],
|
|
@@ -76971,7 +77022,7 @@ function requireDist () {
|
|
|
76971
77022
|
'pac+https': [wellKnownAgents.pac, wellKnownAgents.pac],
|
|
76972
77023
|
};
|
|
76973
77024
|
function isValidProtocol(v) {
|
|
76974
|
-
return Object.keys(exports.proxies).includes(v);
|
|
77025
|
+
return Object.keys(exports$1.proxies).includes(v);
|
|
76975
77026
|
}
|
|
76976
77027
|
class ProxyAgent extends agent_base_1.Agent {
|
|
76977
77028
|
constructor(opts) {
|
|
@@ -77014,7 +77065,7 @@ function requireDist () {
|
|
|
77014
77065
|
if (!isValidProtocol(proxyProto)) {
|
|
77015
77066
|
throw new Error(`Unsupported protocol for proxy URL: ${proxy}`);
|
|
77016
77067
|
}
|
|
77017
|
-
const ctor = await exports.proxies[proxyProto][secureEndpoint || isWebSocket ? 1 : 0]();
|
|
77068
|
+
const ctor = await exports$1.proxies[proxyProto][secureEndpoint || isWebSocket ? 1 : 0]();
|
|
77018
77069
|
agent = new ctor(proxy, this.connectOpts);
|
|
77019
77070
|
this.cache.set(cacheKey, agent);
|
|
77020
77071
|
}
|
|
@@ -77030,7 +77081,7 @@ function requireDist () {
|
|
|
77030
77081
|
super.destroy();
|
|
77031
77082
|
}
|
|
77032
77083
|
}
|
|
77033
|
-
exports.ProxyAgent = ProxyAgent;
|
|
77084
|
+
exports$1.ProxyAgent = ProxyAgent;
|
|
77034
77085
|
} (dist$b));
|
|
77035
77086
|
return dist$b;
|
|
77036
77087
|
}
|
|
@@ -78444,7 +78495,7 @@ var hasRequiredNodeProgress;
|
|
|
78444
78495
|
function requireNodeProgress () {
|
|
78445
78496
|
if (hasRequiredNodeProgress) return nodeProgress.exports;
|
|
78446
78497
|
hasRequiredNodeProgress = 1;
|
|
78447
|
-
(function (module, exports) {
|
|
78498
|
+
(function (module, exports$1) {
|
|
78448
78499
|
module.exports = ProgressBar;
|
|
78449
78500
|
function ProgressBar(fmt, options) {
|
|
78450
78501
|
this.stream = options.stream || process.stderr;
|