chrome-devtools-mcp 0.10.0 → 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 +25 -16
- package/build/src/McpResponse.js +39 -3
- 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 +729 -676
- package/build/src/tools/console.js +5 -0
- package/build/src/tools/pages.js +1 -1
- 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],
|
|
@@ -42807,7 +42819,9 @@ class NetworkManager extends EventEmitter {
|
|
|
42807
42819
|
}
|
|
42808
42820
|
#canIgnoreError(error) {
|
|
42809
42821
|
return (isErrorLike$1(error) &&
|
|
42810
|
-
(isTargetClosedError(error) ||
|
|
42822
|
+
(isTargetClosedError(error) ||
|
|
42823
|
+
error.message.includes('Not supported') ||
|
|
42824
|
+
error.message.includes("wasn't found")));
|
|
42811
42825
|
}
|
|
42812
42826
|
async addClient(client) {
|
|
42813
42827
|
if (!this.#networkEnabled || this.#clients.has(client)) {
|
|
@@ -43126,17 +43140,38 @@ class NetworkManager extends EventEmitter {
|
|
|
43126
43140
|
if (request) {
|
|
43127
43141
|
this.#handleRequestRedirect(client, request, event.redirectResponse, redirectResponseExtraInfo);
|
|
43128
43142
|
redirectChain = request._redirectChain;
|
|
43143
|
+
const extraInfo = this.#networkEventManager
|
|
43144
|
+
.requestExtraInfo(event.requestId)
|
|
43145
|
+
.shift();
|
|
43146
|
+
if (extraInfo) {
|
|
43147
|
+
request.updateHeaders(extraInfo.headers);
|
|
43148
|
+
}
|
|
43129
43149
|
}
|
|
43130
43150
|
}
|
|
43131
43151
|
const frame = event.frameId
|
|
43132
43152
|
? this.#frameManager.frame(event.frameId)
|
|
43133
43153
|
: null;
|
|
43134
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
|
+
}
|
|
43135
43161
|
request._fromMemoryCache = fromMemoryCache;
|
|
43136
43162
|
this.#networkEventManager.storeRequest(event.requestId, request);
|
|
43137
43163
|
this.emit(NetworkManagerEvent.Request, request);
|
|
43138
43164
|
void request.finalizeInterceptions();
|
|
43139
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
|
+
}
|
|
43140
43175
|
#onRequestServedFromCache(client, event) {
|
|
43141
43176
|
const requestWillBeSentEvent = this.#networkEventManager.getRequestWillBeSent(event.requestId);
|
|
43142
43177
|
let request = this.#networkEventManager.getRequest(event.requestId);
|
|
@@ -48281,9 +48316,9 @@ class Puppeteer {
|
|
|
48281
48316
|
* SPDX-License-Identifier: Apache-2.0
|
|
48282
48317
|
*/
|
|
48283
48318
|
const PUPPETEER_REVISIONS = Object.freeze({
|
|
48284
|
-
chrome: '142.0.7444.
|
|
48285
|
-
'chrome-headless-shell': '142.0.7444.
|
|
48286
|
-
firefox: '
|
|
48319
|
+
chrome: '142.0.7444.162',
|
|
48320
|
+
'chrome-headless-shell': '142.0.7444.162',
|
|
48321
|
+
firefox: 'stable_145.0',
|
|
48287
48322
|
});
|
|
48288
48323
|
|
|
48289
48324
|
/**
|
|
@@ -48385,19 +48420,19 @@ var hasRequiredRe;
|
|
|
48385
48420
|
function requireRe () {
|
|
48386
48421
|
if (hasRequiredRe) return re.exports;
|
|
48387
48422
|
hasRequiredRe = 1;
|
|
48388
|
-
(function (module, exports) {
|
|
48423
|
+
(function (module, exports$1) {
|
|
48389
48424
|
const {
|
|
48390
48425
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
48391
48426
|
MAX_SAFE_BUILD_LENGTH,
|
|
48392
48427
|
MAX_LENGTH,
|
|
48393
48428
|
} = requireConstants$4();
|
|
48394
48429
|
const debug = requireDebug$1();
|
|
48395
|
-
exports = module.exports = {};
|
|
48396
|
-
const re = exports.re = [];
|
|
48397
|
-
const safeRe = exports.safeRe = [];
|
|
48398
|
-
const src = exports.src = [];
|
|
48399
|
-
const safeSrc = exports.safeSrc = [];
|
|
48400
|
-
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 = {};
|
|
48401
48436
|
let R = 0;
|
|
48402
48437
|
const LETTERDASHNUMBER = '[a-zA-Z0-9-]';
|
|
48403
48438
|
const safeRegexReplacements = [
|
|
@@ -48481,19 +48516,19 @@ function requireRe () {
|
|
|
48481
48516
|
createToken('COERCERTLFULL', src[t.COERCEFULL], true);
|
|
48482
48517
|
createToken('LONETILDE', '(?:~>?)');
|
|
48483
48518
|
createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true);
|
|
48484
|
-
exports.tildeTrimReplace = '$1~';
|
|
48519
|
+
exports$1.tildeTrimReplace = '$1~';
|
|
48485
48520
|
createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
|
|
48486
48521
|
createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
48487
48522
|
createToken('LONECARET', '(?:\\^)');
|
|
48488
48523
|
createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true);
|
|
48489
|
-
exports.caretTrimReplace = '$1^';
|
|
48524
|
+
exports$1.caretTrimReplace = '$1^';
|
|
48490
48525
|
createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
|
|
48491
48526
|
createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
48492
48527
|
createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
|
|
48493
48528
|
createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
|
|
48494
48529
|
createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT]
|
|
48495
48530
|
}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
|
|
48496
|
-
exports.comparatorTrimReplace = '$1$2$3';
|
|
48531
|
+
exports$1.comparatorTrimReplace = '$1$2$3';
|
|
48497
48532
|
createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` +
|
|
48498
48533
|
`\\s+-\\s+` +
|
|
48499
48534
|
`(${src[t.XRANGEPLAIN]})` +
|
|
@@ -51646,7 +51681,7 @@ var hasRequiredDist$b;
|
|
|
51646
51681
|
function requireDist$b () {
|
|
51647
51682
|
if (hasRequiredDist$b) return dist$a;
|
|
51648
51683
|
hasRequiredDist$b = 1;
|
|
51649
|
-
(function (exports) {
|
|
51684
|
+
(function (exports$1) {
|
|
51650
51685
|
var __createBinding = (dist$a && dist$a.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
51651
51686
|
if (k2 === undefined) k2 = k;
|
|
51652
51687
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -51670,15 +51705,15 @@ function requireDist$b () {
|
|
|
51670
51705
|
__setModuleDefault(result, mod);
|
|
51671
51706
|
return result;
|
|
51672
51707
|
};
|
|
51673
|
-
var __exportStar = (dist$a && dist$a.__exportStar) || function(m, exports) {
|
|
51674
|
-
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);
|
|
51675
51710
|
};
|
|
51676
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51677
|
-
exports.Agent = void 0;
|
|
51711
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
51712
|
+
exports$1.Agent = void 0;
|
|
51678
51713
|
const net = __importStar(require$$0$4);
|
|
51679
51714
|
const http = __importStar(require$$0$3);
|
|
51680
51715
|
const https_1 = require$$1$1;
|
|
51681
|
-
__exportStar(requireHelpers$2(), exports);
|
|
51716
|
+
__exportStar(requireHelpers$2(), exports$1);
|
|
51682
51717
|
const INTERNAL = Symbol('AgentBaseInternalState');
|
|
51683
51718
|
class Agent extends http.Agent {
|
|
51684
51719
|
constructor(opts) {
|
|
@@ -51788,7 +51823,7 @@ function requireDist$b () {
|
|
|
51788
51823
|
}
|
|
51789
51824
|
}
|
|
51790
51825
|
}
|
|
51791
|
-
exports.Agent = Agent;
|
|
51826
|
+
exports$1.Agent = Agent;
|
|
51792
51827
|
} (dist$a));
|
|
51793
51828
|
return dist$a;
|
|
51794
51829
|
}
|
|
@@ -53233,6 +53268,24 @@ function requireIpv4 () {
|
|
|
53233
53268
|
static fromBigInt(bigInt) {
|
|
53234
53269
|
return Address4.fromHex(bigInt.toString(16));
|
|
53235
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
|
+
}
|
|
53236
53289
|
mask(mask) {
|
|
53237
53290
|
if (mask === undefined) {
|
|
53238
53291
|
mask = this.subnetMask;
|
|
@@ -54088,7 +54141,7 @@ var hasRequiredIpAddress;
|
|
|
54088
54141
|
function requireIpAddress () {
|
|
54089
54142
|
if (hasRequiredIpAddress) return ipAddress;
|
|
54090
54143
|
hasRequiredIpAddress = 1;
|
|
54091
|
-
(function (exports) {
|
|
54144
|
+
(function (exports$1) {
|
|
54092
54145
|
var __createBinding = (ipAddress && ipAddress.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
54093
54146
|
if (k2 === undefined) k2 = k;
|
|
54094
54147
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -54112,16 +54165,16 @@ function requireIpAddress () {
|
|
|
54112
54165
|
__setModuleDefault(result, mod);
|
|
54113
54166
|
return result;
|
|
54114
54167
|
};
|
|
54115
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54116
|
-
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;
|
|
54117
54170
|
var ipv4_1 = requireIpv4();
|
|
54118
|
-
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; } });
|
|
54119
54172
|
var ipv6_1 = requireIpv6();
|
|
54120
|
-
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; } });
|
|
54121
54174
|
var address_error_1 = requireAddressError();
|
|
54122
|
-
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; } });
|
|
54123
54176
|
const helpers = __importStar(requireHelpers$1());
|
|
54124
|
-
exports.v6 = { helpers };
|
|
54177
|
+
exports$1.v6 = { helpers };
|
|
54125
54178
|
} (ipAddress));
|
|
54126
54179
|
return ipAddress;
|
|
54127
54180
|
}
|
|
@@ -54312,7 +54365,7 @@ var hasRequiredSocksclient;
|
|
|
54312
54365
|
function requireSocksclient () {
|
|
54313
54366
|
if (hasRequiredSocksclient) return socksclient;
|
|
54314
54367
|
hasRequiredSocksclient = 1;
|
|
54315
|
-
(function (exports) {
|
|
54368
|
+
(function (exports$1) {
|
|
54316
54369
|
var __awaiter = (socksclient && socksclient.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
54317
54370
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
54318
54371
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -54322,8 +54375,8 @@ function requireSocksclient () {
|
|
|
54322
54375
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
54323
54376
|
});
|
|
54324
54377
|
};
|
|
54325
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54326
|
-
exports.SocksClientError = exports.SocksClient = void 0;
|
|
54378
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
54379
|
+
exports$1.SocksClientError = exports$1.SocksClient = void 0;
|
|
54327
54380
|
const events_1 = require$$0$5;
|
|
54328
54381
|
const net = require$$0$4;
|
|
54329
54382
|
const smart_buffer_1 = requireSmartbuffer();
|
|
@@ -54331,7 +54384,7 @@ function requireSocksclient () {
|
|
|
54331
54384
|
const helpers_1 = requireHelpers();
|
|
54332
54385
|
const receivebuffer_1 = requireReceivebuffer();
|
|
54333
54386
|
const util_1 = requireUtil$2();
|
|
54334
|
-
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; } });
|
|
54335
54388
|
const ip_address_1 = requireIpAddress();
|
|
54336
54389
|
class SocksClient extends events_1.EventEmitter {
|
|
54337
54390
|
constructor(options) {
|
|
@@ -54923,7 +54976,7 @@ function requireSocksclient () {
|
|
|
54923
54976
|
return Object.assign({}, this.options);
|
|
54924
54977
|
}
|
|
54925
54978
|
}
|
|
54926
|
-
exports.SocksClient = SocksClient;
|
|
54979
|
+
exports$1.SocksClient = SocksClient;
|
|
54927
54980
|
} (socksclient));
|
|
54928
54981
|
return socksclient;
|
|
54929
54982
|
}
|
|
@@ -54933,7 +54986,7 @@ var hasRequiredBuild;
|
|
|
54933
54986
|
function requireBuild () {
|
|
54934
54987
|
if (hasRequiredBuild) return build;
|
|
54935
54988
|
hasRequiredBuild = 1;
|
|
54936
|
-
(function (exports) {
|
|
54989
|
+
(function (exports$1) {
|
|
54937
54990
|
var __createBinding = (build && build.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
54938
54991
|
if (k2 === undefined) k2 = k;
|
|
54939
54992
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -54945,11 +54998,11 @@ function requireBuild () {
|
|
|
54945
54998
|
if (k2 === undefined) k2 = k;
|
|
54946
54999
|
o[k2] = m[k];
|
|
54947
55000
|
}));
|
|
54948
|
-
var __exportStar = (build && build.__exportStar) || function(m, exports) {
|
|
54949
|
-
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);
|
|
54950
55003
|
};
|
|
54951
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54952
|
-
__exportStar(requireSocksclient(), exports);
|
|
55004
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
55005
|
+
__exportStar(requireSocksclient(), exports$1);
|
|
54953
55006
|
} (build));
|
|
54954
55007
|
return build;
|
|
54955
55008
|
}
|
|
@@ -56990,7 +57043,7 @@ var hasRequiredDist$6;
|
|
|
56990
57043
|
function requireDist$6 () {
|
|
56991
57044
|
if (hasRequiredDist$6) return dist$3;
|
|
56992
57045
|
hasRequiredDist$6 = 1;
|
|
56993
|
-
(function (exports) {
|
|
57046
|
+
(function (exports$1) {
|
|
56994
57047
|
var __createBinding = (dist$3 && dist$3.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
56995
57048
|
if (k2 === undefined) k2 = k;
|
|
56996
57049
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -57002,19 +57055,19 @@ function requireDist$6 () {
|
|
|
57002
57055
|
if (k2 === undefined) k2 = k;
|
|
57003
57056
|
o[k2] = m[k];
|
|
57004
57057
|
}));
|
|
57005
|
-
var __exportStar = (dist$3 && dist$3.__exportStar) || function(m, exports) {
|
|
57006
|
-
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);
|
|
57007
57060
|
};
|
|
57008
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57009
|
-
exports.enterPassiveModeIPv6 = exports.enterPassiveModeIPv4 = void 0;
|
|
57010
|
-
__exportStar(requireClient(), exports);
|
|
57011
|
-
__exportStar(requireFtpContext(), exports);
|
|
57012
|
-
__exportStar(requireFileInfo(), exports);
|
|
57013
|
-
__exportStar(requireParseList(), exports);
|
|
57014
|
-
__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);
|
|
57015
57068
|
var transfer_1 = requireTransfer();
|
|
57016
|
-
Object.defineProperty(exports, "enterPassiveModeIPv4", { enumerable: true, get: function () { return transfer_1.enterPassiveModeIPv4; } });
|
|
57017
|
-
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; } });
|
|
57018
57071
|
} (dist$3));
|
|
57019
57072
|
return dist$3;
|
|
57020
57073
|
}
|
|
@@ -57135,12 +57188,12 @@ var hasRequiredHttp;
|
|
|
57135
57188
|
function requireHttp () {
|
|
57136
57189
|
if (hasRequiredHttp) return http;
|
|
57137
57190
|
hasRequiredHttp = 1;
|
|
57138
|
-
(function (exports) {
|
|
57191
|
+
(function (exports$1) {
|
|
57139
57192
|
var __importDefault = (http && http.__importDefault) || function (mod) {
|
|
57140
57193
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
57141
57194
|
};
|
|
57142
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57143
|
-
exports.http = void 0;
|
|
57195
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
57196
|
+
exports$1.http = void 0;
|
|
57144
57197
|
const http_1 = __importDefault(require$$0$3);
|
|
57145
57198
|
const https_1 = __importDefault(require$$1$1);
|
|
57146
57199
|
const events_1 = require$$0$5;
|
|
@@ -57210,7 +57263,7 @@ function requireHttp () {
|
|
|
57210
57263
|
if (newUri.protocol !== url.protocol) {
|
|
57211
57264
|
opts.http = newUri.protocol === 'https:' ? https_1.default : undefined;
|
|
57212
57265
|
}
|
|
57213
|
-
return (0, exports.http)(newUri, opts);
|
|
57266
|
+
return (0, exports$1.http)(newUri, opts);
|
|
57214
57267
|
}
|
|
57215
57268
|
}
|
|
57216
57269
|
if (type !== 2) {
|
|
@@ -57228,7 +57281,7 @@ function requireHttp () {
|
|
|
57228
57281
|
}
|
|
57229
57282
|
return res;
|
|
57230
57283
|
};
|
|
57231
|
-
exports.http = http$1;
|
|
57284
|
+
exports$1.http = http$1;
|
|
57232
57285
|
function isFresh(cache) {
|
|
57233
57286
|
let fresh = false;
|
|
57234
57287
|
let expires = parseInt(cache.headers.expires || '', 10);
|
|
@@ -57314,12 +57367,12 @@ var hasRequiredDist$5;
|
|
|
57314
57367
|
function requireDist$5 () {
|
|
57315
57368
|
if (hasRequiredDist$5) return dist$5;
|
|
57316
57369
|
hasRequiredDist$5 = 1;
|
|
57317
|
-
(function (exports) {
|
|
57370
|
+
(function (exports$1) {
|
|
57318
57371
|
var __importDefault = (dist$5 && dist$5.__importDefault) || function (mod) {
|
|
57319
57372
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
57320
57373
|
};
|
|
57321
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57322
|
-
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;
|
|
57323
57376
|
const debug_1 = __importDefault(requireSrc());
|
|
57324
57377
|
const data_1 = requireData();
|
|
57325
57378
|
const file_1 = requireFile();
|
|
@@ -57327,18 +57380,18 @@ function requireDist$5 () {
|
|
|
57327
57380
|
const http_1 = requireHttp();
|
|
57328
57381
|
const https_1 = requireHttps();
|
|
57329
57382
|
const debug = (0, debug_1.default)('get-uri');
|
|
57330
|
-
exports.protocols = {
|
|
57383
|
+
exports$1.protocols = {
|
|
57331
57384
|
data: data_1.data,
|
|
57332
57385
|
file: file_1.file,
|
|
57333
57386
|
ftp: ftp_1.ftp,
|
|
57334
57387
|
http: http_1.http,
|
|
57335
57388
|
https: https_1.https,
|
|
57336
57389
|
};
|
|
57337
|
-
const VALID_PROTOCOLS = new Set(Object.keys(exports.protocols));
|
|
57390
|
+
const VALID_PROTOCOLS = new Set(Object.keys(exports$1.protocols));
|
|
57338
57391
|
function isValidProtocol(p) {
|
|
57339
57392
|
return VALID_PROTOCOLS.has(p);
|
|
57340
57393
|
}
|
|
57341
|
-
exports.isValidProtocol = isValidProtocol;
|
|
57394
|
+
exports$1.isValidProtocol = isValidProtocol;
|
|
57342
57395
|
async function getUri(uri, opts) {
|
|
57343
57396
|
debug('getUri(%o)', uri);
|
|
57344
57397
|
if (!uri) {
|
|
@@ -57349,10 +57402,10 @@ function requireDist$5 () {
|
|
|
57349
57402
|
if (!isValidProtocol(protocol)) {
|
|
57350
57403
|
throw new TypeError(`Unsupported protocol "${protocol}" specified in URI: "${uri}"`);
|
|
57351
57404
|
}
|
|
57352
|
-
const getter = exports.protocols[protocol];
|
|
57405
|
+
const getter = exports$1.protocols[protocol];
|
|
57353
57406
|
return getter(url, opts);
|
|
57354
57407
|
}
|
|
57355
|
-
exports.getUri = getUri;
|
|
57408
|
+
exports$1.getUri = getUri;
|
|
57356
57409
|
} (dist$5));
|
|
57357
57410
|
return dist$5;
|
|
57358
57411
|
}
|
|
@@ -57394,8 +57447,8 @@ var hasRequiredEstraverse;
|
|
|
57394
57447
|
function requireEstraverse () {
|
|
57395
57448
|
if (hasRequiredEstraverse) return estraverse;
|
|
57396
57449
|
hasRequiredEstraverse = 1;
|
|
57397
|
-
(function (exports) {
|
|
57398
|
-
(function clone(exports) {
|
|
57450
|
+
(function (exports$1) {
|
|
57451
|
+
(function clone(exports$1) {
|
|
57399
57452
|
var Syntax,
|
|
57400
57453
|
VisitorOption,
|
|
57401
57454
|
VisitorKeys,
|
|
@@ -58014,16 +58067,16 @@ function requireEstraverse () {
|
|
|
58014
58067
|
});
|
|
58015
58068
|
return tree;
|
|
58016
58069
|
}
|
|
58017
|
-
exports.Syntax = Syntax;
|
|
58018
|
-
exports.traverse = traverse;
|
|
58019
|
-
exports.replace = replace;
|
|
58020
|
-
exports.attachComments = attachComments;
|
|
58021
|
-
exports.VisitorKeys = VisitorKeys;
|
|
58022
|
-
exports.VisitorOption = VisitorOption;
|
|
58023
|
-
exports.Controller = Controller;
|
|
58024
|
-
exports.cloneEnvironment = function () { return clone({}); };
|
|
58025
|
-
return exports;
|
|
58026
|
-
}(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));
|
|
58027
58080
|
} (estraverse));
|
|
58028
58081
|
return estraverse;
|
|
58029
58082
|
}
|
|
@@ -58630,7 +58683,7 @@ var hasRequiredUtil$1;
|
|
|
58630
58683
|
function requireUtil$1 () {
|
|
58631
58684
|
if (hasRequiredUtil$1) return util$1;
|
|
58632
58685
|
hasRequiredUtil$1 = 1;
|
|
58633
|
-
(function (exports) {
|
|
58686
|
+
(function (exports$1) {
|
|
58634
58687
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
58635
58688
|
if (aName in aArgs) {
|
|
58636
58689
|
return aArgs[aName];
|
|
@@ -58640,7 +58693,7 @@ function requireUtil$1 () {
|
|
|
58640
58693
|
throw new Error('"' + aName + '" is a required argument.');
|
|
58641
58694
|
}
|
|
58642
58695
|
}
|
|
58643
|
-
exports.getArg = getArg;
|
|
58696
|
+
exports$1.getArg = getArg;
|
|
58644
58697
|
var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
|
|
58645
58698
|
var dataUrlRegexp = /^data:.+\,.+$/;
|
|
58646
58699
|
function urlParse(aUrl) {
|
|
@@ -58656,7 +58709,7 @@ function requireUtil$1 () {
|
|
|
58656
58709
|
path: match[5]
|
|
58657
58710
|
};
|
|
58658
58711
|
}
|
|
58659
|
-
exports.urlParse = urlParse;
|
|
58712
|
+
exports$1.urlParse = urlParse;
|
|
58660
58713
|
function urlGenerate(aParsedUrl) {
|
|
58661
58714
|
var url = '';
|
|
58662
58715
|
if (aParsedUrl.scheme) {
|
|
@@ -58677,7 +58730,7 @@ function requireUtil$1 () {
|
|
|
58677
58730
|
}
|
|
58678
58731
|
return url;
|
|
58679
58732
|
}
|
|
58680
|
-
exports.urlGenerate = urlGenerate;
|
|
58733
|
+
exports$1.urlGenerate = urlGenerate;
|
|
58681
58734
|
function normalize(aPath) {
|
|
58682
58735
|
var path = aPath;
|
|
58683
58736
|
var url = urlParse(aPath);
|
|
@@ -58687,7 +58740,7 @@ function requireUtil$1 () {
|
|
|
58687
58740
|
}
|
|
58688
58741
|
path = url.path;
|
|
58689
58742
|
}
|
|
58690
|
-
var isAbsolute = exports.isAbsolute(path);
|
|
58743
|
+
var isAbsolute = exports$1.isAbsolute(path);
|
|
58691
58744
|
var parts = path.split(/\/+/);
|
|
58692
58745
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
|
58693
58746
|
part = parts[i];
|
|
@@ -58715,7 +58768,7 @@ function requireUtil$1 () {
|
|
|
58715
58768
|
}
|
|
58716
58769
|
return path;
|
|
58717
58770
|
}
|
|
58718
|
-
exports.normalize = normalize;
|
|
58771
|
+
exports$1.normalize = normalize;
|
|
58719
58772
|
function join(aRoot, aPath) {
|
|
58720
58773
|
if (aRoot === "") {
|
|
58721
58774
|
aRoot = ".";
|
|
@@ -58750,8 +58803,8 @@ function requireUtil$1 () {
|
|
|
58750
58803
|
}
|
|
58751
58804
|
return joined;
|
|
58752
58805
|
}
|
|
58753
|
-
exports.join = join;
|
|
58754
|
-
exports.isAbsolute = function (aPath) {
|
|
58806
|
+
exports$1.join = join;
|
|
58807
|
+
exports$1.isAbsolute = function (aPath) {
|
|
58755
58808
|
return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
|
|
58756
58809
|
};
|
|
58757
58810
|
function relative(aRoot, aPath) {
|
|
@@ -58773,7 +58826,7 @@ function requireUtil$1 () {
|
|
|
58773
58826
|
}
|
|
58774
58827
|
return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
|
|
58775
58828
|
}
|
|
58776
|
-
exports.relative = relative;
|
|
58829
|
+
exports$1.relative = relative;
|
|
58777
58830
|
var supportsNullProto = (function () {
|
|
58778
58831
|
var obj = Object.create(null);
|
|
58779
58832
|
return !('__proto__' in obj);
|
|
@@ -58787,14 +58840,14 @@ function requireUtil$1 () {
|
|
|
58787
58840
|
}
|
|
58788
58841
|
return aStr;
|
|
58789
58842
|
}
|
|
58790
|
-
exports.toSetString = supportsNullProto ? identity : toSetString;
|
|
58843
|
+
exports$1.toSetString = supportsNullProto ? identity : toSetString;
|
|
58791
58844
|
function fromSetString(aStr) {
|
|
58792
58845
|
if (isProtoString(aStr)) {
|
|
58793
58846
|
return aStr.slice(1);
|
|
58794
58847
|
}
|
|
58795
58848
|
return aStr;
|
|
58796
58849
|
}
|
|
58797
|
-
exports.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
58850
|
+
exports$1.fromSetString = supportsNullProto ? identity : fromSetString;
|
|
58798
58851
|
function isProtoString(s) {
|
|
58799
58852
|
if (!s) {
|
|
58800
58853
|
return false;
|
|
@@ -58844,7 +58897,7 @@ function requireUtil$1 () {
|
|
|
58844
58897
|
}
|
|
58845
58898
|
return strcmp(mappingA.name, mappingB.name);
|
|
58846
58899
|
}
|
|
58847
|
-
exports.compareByOriginalPositions = compareByOriginalPositions;
|
|
58900
|
+
exports$1.compareByOriginalPositions = compareByOriginalPositions;
|
|
58848
58901
|
function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
|
|
58849
58902
|
var cmp = mappingA.generatedLine - mappingB.generatedLine;
|
|
58850
58903
|
if (cmp !== 0) {
|
|
@@ -58868,7 +58921,7 @@ function requireUtil$1 () {
|
|
|
58868
58921
|
}
|
|
58869
58922
|
return strcmp(mappingA.name, mappingB.name);
|
|
58870
58923
|
}
|
|
58871
|
-
exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
58924
|
+
exports$1.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
|
58872
58925
|
function strcmp(aStr1, aStr2) {
|
|
58873
58926
|
if (aStr1 === aStr2) {
|
|
58874
58927
|
return 0;
|
|
@@ -58907,11 +58960,11 @@ function requireUtil$1 () {
|
|
|
58907
58960
|
}
|
|
58908
58961
|
return strcmp(mappingA.name, mappingB.name);
|
|
58909
58962
|
}
|
|
58910
|
-
exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
58963
|
+
exports$1.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
|
58911
58964
|
function parseSourceMapInput(str) {
|
|
58912
58965
|
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
|
|
58913
58966
|
}
|
|
58914
|
-
exports.parseSourceMapInput = parseSourceMapInput;
|
|
58967
|
+
exports$1.parseSourceMapInput = parseSourceMapInput;
|
|
58915
58968
|
function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
|
|
58916
58969
|
sourceURL = sourceURL || '';
|
|
58917
58970
|
if (sourceRoot) {
|
|
@@ -58935,7 +58988,7 @@ function requireUtil$1 () {
|
|
|
58935
58988
|
}
|
|
58936
58989
|
return normalize(sourceURL);
|
|
58937
58990
|
}
|
|
58938
|
-
exports.computeSourceURL = computeSourceURL;
|
|
58991
|
+
exports$1.computeSourceURL = computeSourceURL;
|
|
58939
58992
|
} (util$1));
|
|
58940
58993
|
return util$1;
|
|
58941
58994
|
}
|
|
@@ -59397,9 +59450,9 @@ var hasRequiredBinarySearch;
|
|
|
59397
59450
|
function requireBinarySearch () {
|
|
59398
59451
|
if (hasRequiredBinarySearch) return binarySearch;
|
|
59399
59452
|
hasRequiredBinarySearch = 1;
|
|
59400
|
-
(function (exports) {
|
|
59401
|
-
exports.GREATEST_LOWER_BOUND = 1;
|
|
59402
|
-
exports.LEAST_UPPER_BOUND = 2;
|
|
59453
|
+
(function (exports$1) {
|
|
59454
|
+
exports$1.GREATEST_LOWER_BOUND = 1;
|
|
59455
|
+
exports$1.LEAST_UPPER_BOUND = 2;
|
|
59403
59456
|
function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
|
|
59404
59457
|
var mid = Math.floor((aHigh - aLow) / 2) + aLow;
|
|
59405
59458
|
var cmp = aCompare(aNeedle, aHaystack[mid], true);
|
|
@@ -59410,7 +59463,7 @@ function requireBinarySearch () {
|
|
|
59410
59463
|
if (aHigh - mid > 1) {
|
|
59411
59464
|
return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
|
|
59412
59465
|
}
|
|
59413
|
-
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
59466
|
+
if (aBias == exports$1.LEAST_UPPER_BOUND) {
|
|
59414
59467
|
return aHigh < aHaystack.length ? aHigh : -1;
|
|
59415
59468
|
} else {
|
|
59416
59469
|
return mid;
|
|
@@ -59420,19 +59473,19 @@ function requireBinarySearch () {
|
|
|
59420
59473
|
if (mid - aLow > 1) {
|
|
59421
59474
|
return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
|
|
59422
59475
|
}
|
|
59423
|
-
if (aBias == exports.LEAST_UPPER_BOUND) {
|
|
59476
|
+
if (aBias == exports$1.LEAST_UPPER_BOUND) {
|
|
59424
59477
|
return mid;
|
|
59425
59478
|
} else {
|
|
59426
59479
|
return aLow < 0 ? -1 : aLow;
|
|
59427
59480
|
}
|
|
59428
59481
|
}
|
|
59429
59482
|
}
|
|
59430
|
-
exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
59483
|
+
exports$1.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
59431
59484
|
if (aHaystack.length === 0) {
|
|
59432
59485
|
return -1;
|
|
59433
59486
|
}
|
|
59434
59487
|
var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack,
|
|
59435
|
-
aCompare, aBias || exports.GREATEST_LOWER_BOUND);
|
|
59488
|
+
aCompare, aBias || exports$1.GREATEST_LOWER_BOUND);
|
|
59436
59489
|
if (index < 0) {
|
|
59437
59490
|
return -1;
|
|
59438
59491
|
}
|
|
@@ -60492,7 +60545,7 @@ var hasRequiredEscodegen;
|
|
|
60492
60545
|
function requireEscodegen () {
|
|
60493
60546
|
if (hasRequiredEscodegen) return escodegen;
|
|
60494
60547
|
hasRequiredEscodegen = 1;
|
|
60495
|
-
(function (exports) {
|
|
60548
|
+
(function (exports$1) {
|
|
60496
60549
|
(function () {
|
|
60497
60550
|
var Syntax,
|
|
60498
60551
|
Precedence,
|
|
@@ -62584,7 +62637,7 @@ function requireEscodegen () {
|
|
|
62584
62637
|
preserveBlankLines = options.format.preserveBlankLines && sourceCode !== null;
|
|
62585
62638
|
extra = options;
|
|
62586
62639
|
if (sourceMap) {
|
|
62587
|
-
if (!exports.browser) {
|
|
62640
|
+
if (!exports$1.browser) {
|
|
62588
62641
|
SourceNode = requireSourceMap().SourceNode;
|
|
62589
62642
|
} else {
|
|
62590
62643
|
SourceNode = commonjsGlobal.sourceMap.SourceNode;
|
|
@@ -62622,13 +62675,13 @@ function requireEscodegen () {
|
|
|
62622
62675
|
semicolons: false
|
|
62623
62676
|
};
|
|
62624
62677
|
FORMAT_DEFAULTS = getDefaultOptions().format;
|
|
62625
|
-
exports.version = require$$3.version;
|
|
62626
|
-
exports.generate = generate;
|
|
62627
|
-
exports.attachComments = estraverse.attachComments;
|
|
62628
|
-
exports.Precedence = updateDeeply({}, Precedence);
|
|
62629
|
-
exports.browser = false;
|
|
62630
|
-
exports.FORMAT_MINIFY = FORMAT_MINIFY;
|
|
62631
|
-
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;
|
|
62632
62685
|
}());
|
|
62633
62686
|
} (escodegen));
|
|
62634
62687
|
return escodegen;
|
|
@@ -62643,7 +62696,7 @@ var hasRequiredEsprima$1;
|
|
|
62643
62696
|
function requireEsprima$1 () {
|
|
62644
62697
|
if (hasRequiredEsprima$1) return esprima$2.exports;
|
|
62645
62698
|
hasRequiredEsprima$1 = 1;
|
|
62646
|
-
(function (module, exports) {
|
|
62699
|
+
(function (module, exports$1) {
|
|
62647
62700
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
62648
62701
|
module.exports = factory();
|
|
62649
62702
|
})(esprima$1, function() {
|
|
@@ -62667,7 +62720,7 @@ function requireEsprima$1 () {
|
|
|
62667
62720
|
return __webpack_require__(0);
|
|
62668
62721
|
})
|
|
62669
62722
|
([
|
|
62670
|
-
function(module, exports, __webpack_require__) {
|
|
62723
|
+
function(module, exports$1, __webpack_require__) {
|
|
62671
62724
|
/*
|
|
62672
62725
|
Copyright JS Foundation and other contributors, https://js.foundation/
|
|
62673
62726
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -62688,7 +62741,7 @@ function requireEsprima$1 () {
|
|
|
62688
62741
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
62689
62742
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
62690
62743
|
*/
|
|
62691
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62744
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62692
62745
|
var comment_handler_1 = __webpack_require__(1);
|
|
62693
62746
|
var jsx_parser_1 = __webpack_require__(3);
|
|
62694
62747
|
var parser_1 = __webpack_require__(8);
|
|
@@ -62739,19 +62792,19 @@ function requireEsprima$1 () {
|
|
|
62739
62792
|
}
|
|
62740
62793
|
return ast;
|
|
62741
62794
|
}
|
|
62742
|
-
exports.parse = parse;
|
|
62795
|
+
exports$1.parse = parse;
|
|
62743
62796
|
function parseModule(code, options, delegate) {
|
|
62744
62797
|
var parsingOptions = options || {};
|
|
62745
62798
|
parsingOptions.sourceType = 'module';
|
|
62746
62799
|
return parse(code, parsingOptions, delegate);
|
|
62747
62800
|
}
|
|
62748
|
-
exports.parseModule = parseModule;
|
|
62801
|
+
exports$1.parseModule = parseModule;
|
|
62749
62802
|
function parseScript(code, options, delegate) {
|
|
62750
62803
|
var parsingOptions = options || {};
|
|
62751
62804
|
parsingOptions.sourceType = 'script';
|
|
62752
62805
|
return parse(code, parsingOptions, delegate);
|
|
62753
62806
|
}
|
|
62754
|
-
exports.parseScript = parseScript;
|
|
62807
|
+
exports$1.parseScript = parseScript;
|
|
62755
62808
|
function tokenize(code, options, delegate) {
|
|
62756
62809
|
var tokenizer = new tokenizer_1.Tokenizer(code, options);
|
|
62757
62810
|
var tokens;
|
|
@@ -62776,13 +62829,13 @@ function requireEsprima$1 () {
|
|
|
62776
62829
|
}
|
|
62777
62830
|
return tokens;
|
|
62778
62831
|
}
|
|
62779
|
-
exports.tokenize = tokenize;
|
|
62832
|
+
exports$1.tokenize = tokenize;
|
|
62780
62833
|
var syntax_1 = __webpack_require__(2);
|
|
62781
|
-
exports.Syntax = syntax_1.Syntax;
|
|
62782
|
-
exports.version = '4.0.1';
|
|
62834
|
+
exports$1.Syntax = syntax_1.Syntax;
|
|
62835
|
+
exports$1.version = '4.0.1';
|
|
62783
62836
|
},
|
|
62784
|
-
function(module, exports, __webpack_require__) {
|
|
62785
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62837
|
+
function(module, exports$1, __webpack_require__) {
|
|
62838
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62786
62839
|
var syntax_1 = __webpack_require__(2);
|
|
62787
62840
|
var CommentHandler = (function () {
|
|
62788
62841
|
function CommentHandler() {
|
|
@@ -62927,11 +62980,11 @@ function requireEsprima$1 () {
|
|
|
62927
62980
|
};
|
|
62928
62981
|
return CommentHandler;
|
|
62929
62982
|
}());
|
|
62930
|
-
exports.CommentHandler = CommentHandler;
|
|
62983
|
+
exports$1.CommentHandler = CommentHandler;
|
|
62931
62984
|
},
|
|
62932
|
-
function(module, exports) {
|
|
62933
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62934
|
-
exports.Syntax = {
|
|
62985
|
+
function(module, exports$1) {
|
|
62986
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
62987
|
+
exports$1.Syntax = {
|
|
62935
62988
|
AssignmentExpression: 'AssignmentExpression',
|
|
62936
62989
|
AssignmentPattern: 'AssignmentPattern',
|
|
62937
62990
|
ArrayExpression: 'ArrayExpression',
|
|
@@ -63000,7 +63053,7 @@ function requireEsprima$1 () {
|
|
|
63000
63053
|
YieldExpression: 'YieldExpression'
|
|
63001
63054
|
};
|
|
63002
63055
|
},
|
|
63003
|
-
function(module, exports, __webpack_require__) {
|
|
63056
|
+
function(module, exports$1, __webpack_require__) {
|
|
63004
63057
|
var __extends = (this && this.__extends) || (function () {
|
|
63005
63058
|
var extendStatics = Object.setPrototypeOf ||
|
|
63006
63059
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -63011,7 +63064,7 @@ function requireEsprima$1 () {
|
|
|
63011
63064
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
63012
63065
|
};
|
|
63013
63066
|
})();
|
|
63014
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63067
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63015
63068
|
var character_1 = __webpack_require__(4);
|
|
63016
63069
|
var JSXNode = __webpack_require__(5);
|
|
63017
63070
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
@@ -63514,15 +63567,15 @@ function requireEsprima$1 () {
|
|
|
63514
63567
|
};
|
|
63515
63568
|
return JSXParser;
|
|
63516
63569
|
}(parser_1.Parser));
|
|
63517
|
-
exports.JSXParser = JSXParser;
|
|
63570
|
+
exports$1.JSXParser = JSXParser;
|
|
63518
63571
|
},
|
|
63519
|
-
function(module, exports) {
|
|
63520
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63572
|
+
function(module, exports$1) {
|
|
63573
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63521
63574
|
var Regex = {
|
|
63522
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]/,
|
|
63523
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]/
|
|
63524
63577
|
};
|
|
63525
|
-
exports.Character = {
|
|
63578
|
+
exports$1.Character = {
|
|
63526
63579
|
fromCodePoint: function (cp) {
|
|
63527
63580
|
return (cp < 0x10000) ? String.fromCharCode(cp) :
|
|
63528
63581
|
String.fromCharCode(0xD800 + ((cp - 0x10000) >> 10)) +
|
|
@@ -63540,7 +63593,7 @@ function requireEsprima$1 () {
|
|
|
63540
63593
|
(cp >= 0x41 && cp <= 0x5A) ||
|
|
63541
63594
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
63542
63595
|
(cp === 0x5C) ||
|
|
63543
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports.Character.fromCodePoint(cp)));
|
|
63596
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports$1.Character.fromCodePoint(cp)));
|
|
63544
63597
|
},
|
|
63545
63598
|
isIdentifierPart: function (cp) {
|
|
63546
63599
|
return (cp === 0x24) || (cp === 0x5F) ||
|
|
@@ -63548,7 +63601,7 @@ function requireEsprima$1 () {
|
|
|
63548
63601
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
63549
63602
|
(cp >= 0x30 && cp <= 0x39) ||
|
|
63550
63603
|
(cp === 0x5C) ||
|
|
63551
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports.Character.fromCodePoint(cp)));
|
|
63604
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports$1.Character.fromCodePoint(cp)));
|
|
63552
63605
|
},
|
|
63553
63606
|
isDecimalDigit: function (cp) {
|
|
63554
63607
|
return (cp >= 0x30 && cp <= 0x39);
|
|
@@ -63563,8 +63616,8 @@ function requireEsprima$1 () {
|
|
|
63563
63616
|
}
|
|
63564
63617
|
};
|
|
63565
63618
|
},
|
|
63566
|
-
function(module, exports, __webpack_require__) {
|
|
63567
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63619
|
+
function(module, exports$1, __webpack_require__) {
|
|
63620
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63568
63621
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
63569
63622
|
var JSXClosingElement = (function () {
|
|
63570
63623
|
function JSXClosingElement(name) {
|
|
@@ -63573,7 +63626,7 @@ function requireEsprima$1 () {
|
|
|
63573
63626
|
}
|
|
63574
63627
|
return JSXClosingElement;
|
|
63575
63628
|
}());
|
|
63576
|
-
exports.JSXClosingElement = JSXClosingElement;
|
|
63629
|
+
exports$1.JSXClosingElement = JSXClosingElement;
|
|
63577
63630
|
var JSXElement = (function () {
|
|
63578
63631
|
function JSXElement(openingElement, children, closingElement) {
|
|
63579
63632
|
this.type = jsx_syntax_1.JSXSyntax.JSXElement;
|
|
@@ -63583,14 +63636,14 @@ function requireEsprima$1 () {
|
|
|
63583
63636
|
}
|
|
63584
63637
|
return JSXElement;
|
|
63585
63638
|
}());
|
|
63586
|
-
exports.JSXElement = JSXElement;
|
|
63639
|
+
exports$1.JSXElement = JSXElement;
|
|
63587
63640
|
var JSXEmptyExpression = (function () {
|
|
63588
63641
|
function JSXEmptyExpression() {
|
|
63589
63642
|
this.type = jsx_syntax_1.JSXSyntax.JSXEmptyExpression;
|
|
63590
63643
|
}
|
|
63591
63644
|
return JSXEmptyExpression;
|
|
63592
63645
|
}());
|
|
63593
|
-
exports.JSXEmptyExpression = JSXEmptyExpression;
|
|
63646
|
+
exports$1.JSXEmptyExpression = JSXEmptyExpression;
|
|
63594
63647
|
var JSXExpressionContainer = (function () {
|
|
63595
63648
|
function JSXExpressionContainer(expression) {
|
|
63596
63649
|
this.type = jsx_syntax_1.JSXSyntax.JSXExpressionContainer;
|
|
@@ -63598,7 +63651,7 @@ function requireEsprima$1 () {
|
|
|
63598
63651
|
}
|
|
63599
63652
|
return JSXExpressionContainer;
|
|
63600
63653
|
}());
|
|
63601
|
-
exports.JSXExpressionContainer = JSXExpressionContainer;
|
|
63654
|
+
exports$1.JSXExpressionContainer = JSXExpressionContainer;
|
|
63602
63655
|
var JSXIdentifier = (function () {
|
|
63603
63656
|
function JSXIdentifier(name) {
|
|
63604
63657
|
this.type = jsx_syntax_1.JSXSyntax.JSXIdentifier;
|
|
@@ -63606,7 +63659,7 @@ function requireEsprima$1 () {
|
|
|
63606
63659
|
}
|
|
63607
63660
|
return JSXIdentifier;
|
|
63608
63661
|
}());
|
|
63609
|
-
exports.JSXIdentifier = JSXIdentifier;
|
|
63662
|
+
exports$1.JSXIdentifier = JSXIdentifier;
|
|
63610
63663
|
var JSXMemberExpression = (function () {
|
|
63611
63664
|
function JSXMemberExpression(object, property) {
|
|
63612
63665
|
this.type = jsx_syntax_1.JSXSyntax.JSXMemberExpression;
|
|
@@ -63615,7 +63668,7 @@ function requireEsprima$1 () {
|
|
|
63615
63668
|
}
|
|
63616
63669
|
return JSXMemberExpression;
|
|
63617
63670
|
}());
|
|
63618
|
-
exports.JSXMemberExpression = JSXMemberExpression;
|
|
63671
|
+
exports$1.JSXMemberExpression = JSXMemberExpression;
|
|
63619
63672
|
var JSXAttribute = (function () {
|
|
63620
63673
|
function JSXAttribute(name, value) {
|
|
63621
63674
|
this.type = jsx_syntax_1.JSXSyntax.JSXAttribute;
|
|
@@ -63624,7 +63677,7 @@ function requireEsprima$1 () {
|
|
|
63624
63677
|
}
|
|
63625
63678
|
return JSXAttribute;
|
|
63626
63679
|
}());
|
|
63627
|
-
exports.JSXAttribute = JSXAttribute;
|
|
63680
|
+
exports$1.JSXAttribute = JSXAttribute;
|
|
63628
63681
|
var JSXNamespacedName = (function () {
|
|
63629
63682
|
function JSXNamespacedName(namespace, name) {
|
|
63630
63683
|
this.type = jsx_syntax_1.JSXSyntax.JSXNamespacedName;
|
|
@@ -63633,7 +63686,7 @@ function requireEsprima$1 () {
|
|
|
63633
63686
|
}
|
|
63634
63687
|
return JSXNamespacedName;
|
|
63635
63688
|
}());
|
|
63636
|
-
exports.JSXNamespacedName = JSXNamespacedName;
|
|
63689
|
+
exports$1.JSXNamespacedName = JSXNamespacedName;
|
|
63637
63690
|
var JSXOpeningElement = (function () {
|
|
63638
63691
|
function JSXOpeningElement(name, selfClosing, attributes) {
|
|
63639
63692
|
this.type = jsx_syntax_1.JSXSyntax.JSXOpeningElement;
|
|
@@ -63643,7 +63696,7 @@ function requireEsprima$1 () {
|
|
|
63643
63696
|
}
|
|
63644
63697
|
return JSXOpeningElement;
|
|
63645
63698
|
}());
|
|
63646
|
-
exports.JSXOpeningElement = JSXOpeningElement;
|
|
63699
|
+
exports$1.JSXOpeningElement = JSXOpeningElement;
|
|
63647
63700
|
var JSXSpreadAttribute = (function () {
|
|
63648
63701
|
function JSXSpreadAttribute(argument) {
|
|
63649
63702
|
this.type = jsx_syntax_1.JSXSyntax.JSXSpreadAttribute;
|
|
@@ -63651,7 +63704,7 @@ function requireEsprima$1 () {
|
|
|
63651
63704
|
}
|
|
63652
63705
|
return JSXSpreadAttribute;
|
|
63653
63706
|
}());
|
|
63654
|
-
exports.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
63707
|
+
exports$1.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
63655
63708
|
var JSXText = (function () {
|
|
63656
63709
|
function JSXText(value, raw) {
|
|
63657
63710
|
this.type = jsx_syntax_1.JSXSyntax.JSXText;
|
|
@@ -63660,11 +63713,11 @@ function requireEsprima$1 () {
|
|
|
63660
63713
|
}
|
|
63661
63714
|
return JSXText;
|
|
63662
63715
|
}());
|
|
63663
|
-
exports.JSXText = JSXText;
|
|
63716
|
+
exports$1.JSXText = JSXText;
|
|
63664
63717
|
},
|
|
63665
|
-
function(module, exports) {
|
|
63666
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63667
|
-
exports.JSXSyntax = {
|
|
63718
|
+
function(module, exports$1) {
|
|
63719
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63720
|
+
exports$1.JSXSyntax = {
|
|
63668
63721
|
JSXAttribute: 'JSXAttribute',
|
|
63669
63722
|
JSXClosingElement: 'JSXClosingElement',
|
|
63670
63723
|
JSXElement: 'JSXElement',
|
|
@@ -63678,8 +63731,8 @@ function requireEsprima$1 () {
|
|
|
63678
63731
|
JSXText: 'JSXText'
|
|
63679
63732
|
};
|
|
63680
63733
|
},
|
|
63681
|
-
function(module, exports, __webpack_require__) {
|
|
63682
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63734
|
+
function(module, exports$1, __webpack_require__) {
|
|
63735
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
63683
63736
|
var syntax_1 = __webpack_require__(2);
|
|
63684
63737
|
var ArrayExpression = (function () {
|
|
63685
63738
|
function ArrayExpression(elements) {
|
|
@@ -63688,7 +63741,7 @@ function requireEsprima$1 () {
|
|
|
63688
63741
|
}
|
|
63689
63742
|
return ArrayExpression;
|
|
63690
63743
|
}());
|
|
63691
|
-
exports.ArrayExpression = ArrayExpression;
|
|
63744
|
+
exports$1.ArrayExpression = ArrayExpression;
|
|
63692
63745
|
var ArrayPattern = (function () {
|
|
63693
63746
|
function ArrayPattern(elements) {
|
|
63694
63747
|
this.type = syntax_1.Syntax.ArrayPattern;
|
|
@@ -63696,7 +63749,7 @@ function requireEsprima$1 () {
|
|
|
63696
63749
|
}
|
|
63697
63750
|
return ArrayPattern;
|
|
63698
63751
|
}());
|
|
63699
|
-
exports.ArrayPattern = ArrayPattern;
|
|
63752
|
+
exports$1.ArrayPattern = ArrayPattern;
|
|
63700
63753
|
var ArrowFunctionExpression = (function () {
|
|
63701
63754
|
function ArrowFunctionExpression(params, body, expression) {
|
|
63702
63755
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -63709,7 +63762,7 @@ function requireEsprima$1 () {
|
|
|
63709
63762
|
}
|
|
63710
63763
|
return ArrowFunctionExpression;
|
|
63711
63764
|
}());
|
|
63712
|
-
exports.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
63765
|
+
exports$1.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
63713
63766
|
var AssignmentExpression = (function () {
|
|
63714
63767
|
function AssignmentExpression(operator, left, right) {
|
|
63715
63768
|
this.type = syntax_1.Syntax.AssignmentExpression;
|
|
@@ -63719,7 +63772,7 @@ function requireEsprima$1 () {
|
|
|
63719
63772
|
}
|
|
63720
63773
|
return AssignmentExpression;
|
|
63721
63774
|
}());
|
|
63722
|
-
exports.AssignmentExpression = AssignmentExpression;
|
|
63775
|
+
exports$1.AssignmentExpression = AssignmentExpression;
|
|
63723
63776
|
var AssignmentPattern = (function () {
|
|
63724
63777
|
function AssignmentPattern(left, right) {
|
|
63725
63778
|
this.type = syntax_1.Syntax.AssignmentPattern;
|
|
@@ -63728,7 +63781,7 @@ function requireEsprima$1 () {
|
|
|
63728
63781
|
}
|
|
63729
63782
|
return AssignmentPattern;
|
|
63730
63783
|
}());
|
|
63731
|
-
exports.AssignmentPattern = AssignmentPattern;
|
|
63784
|
+
exports$1.AssignmentPattern = AssignmentPattern;
|
|
63732
63785
|
var AsyncArrowFunctionExpression = (function () {
|
|
63733
63786
|
function AsyncArrowFunctionExpression(params, body, expression) {
|
|
63734
63787
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -63741,7 +63794,7 @@ function requireEsprima$1 () {
|
|
|
63741
63794
|
}
|
|
63742
63795
|
return AsyncArrowFunctionExpression;
|
|
63743
63796
|
}());
|
|
63744
|
-
exports.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
|
|
63797
|
+
exports$1.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
|
|
63745
63798
|
var AsyncFunctionDeclaration = (function () {
|
|
63746
63799
|
function AsyncFunctionDeclaration(id, params, body) {
|
|
63747
63800
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -63754,7 +63807,7 @@ function requireEsprima$1 () {
|
|
|
63754
63807
|
}
|
|
63755
63808
|
return AsyncFunctionDeclaration;
|
|
63756
63809
|
}());
|
|
63757
|
-
exports.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
|
|
63810
|
+
exports$1.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
|
|
63758
63811
|
var AsyncFunctionExpression = (function () {
|
|
63759
63812
|
function AsyncFunctionExpression(id, params, body) {
|
|
63760
63813
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -63767,7 +63820,7 @@ function requireEsprima$1 () {
|
|
|
63767
63820
|
}
|
|
63768
63821
|
return AsyncFunctionExpression;
|
|
63769
63822
|
}());
|
|
63770
|
-
exports.AsyncFunctionExpression = AsyncFunctionExpression;
|
|
63823
|
+
exports$1.AsyncFunctionExpression = AsyncFunctionExpression;
|
|
63771
63824
|
var AwaitExpression = (function () {
|
|
63772
63825
|
function AwaitExpression(argument) {
|
|
63773
63826
|
this.type = syntax_1.Syntax.AwaitExpression;
|
|
@@ -63775,7 +63828,7 @@ function requireEsprima$1 () {
|
|
|
63775
63828
|
}
|
|
63776
63829
|
return AwaitExpression;
|
|
63777
63830
|
}());
|
|
63778
|
-
exports.AwaitExpression = AwaitExpression;
|
|
63831
|
+
exports$1.AwaitExpression = AwaitExpression;
|
|
63779
63832
|
var BinaryExpression = (function () {
|
|
63780
63833
|
function BinaryExpression(operator, left, right) {
|
|
63781
63834
|
var logical = (operator === '||' || operator === '&&');
|
|
@@ -63786,7 +63839,7 @@ function requireEsprima$1 () {
|
|
|
63786
63839
|
}
|
|
63787
63840
|
return BinaryExpression;
|
|
63788
63841
|
}());
|
|
63789
|
-
exports.BinaryExpression = BinaryExpression;
|
|
63842
|
+
exports$1.BinaryExpression = BinaryExpression;
|
|
63790
63843
|
var BlockStatement = (function () {
|
|
63791
63844
|
function BlockStatement(body) {
|
|
63792
63845
|
this.type = syntax_1.Syntax.BlockStatement;
|
|
@@ -63794,7 +63847,7 @@ function requireEsprima$1 () {
|
|
|
63794
63847
|
}
|
|
63795
63848
|
return BlockStatement;
|
|
63796
63849
|
}());
|
|
63797
|
-
exports.BlockStatement = BlockStatement;
|
|
63850
|
+
exports$1.BlockStatement = BlockStatement;
|
|
63798
63851
|
var BreakStatement = (function () {
|
|
63799
63852
|
function BreakStatement(label) {
|
|
63800
63853
|
this.type = syntax_1.Syntax.BreakStatement;
|
|
@@ -63802,7 +63855,7 @@ function requireEsprima$1 () {
|
|
|
63802
63855
|
}
|
|
63803
63856
|
return BreakStatement;
|
|
63804
63857
|
}());
|
|
63805
|
-
exports.BreakStatement = BreakStatement;
|
|
63858
|
+
exports$1.BreakStatement = BreakStatement;
|
|
63806
63859
|
var CallExpression = (function () {
|
|
63807
63860
|
function CallExpression(callee, args) {
|
|
63808
63861
|
this.type = syntax_1.Syntax.CallExpression;
|
|
@@ -63811,7 +63864,7 @@ function requireEsprima$1 () {
|
|
|
63811
63864
|
}
|
|
63812
63865
|
return CallExpression;
|
|
63813
63866
|
}());
|
|
63814
|
-
exports.CallExpression = CallExpression;
|
|
63867
|
+
exports$1.CallExpression = CallExpression;
|
|
63815
63868
|
var CatchClause = (function () {
|
|
63816
63869
|
function CatchClause(param, body) {
|
|
63817
63870
|
this.type = syntax_1.Syntax.CatchClause;
|
|
@@ -63820,7 +63873,7 @@ function requireEsprima$1 () {
|
|
|
63820
63873
|
}
|
|
63821
63874
|
return CatchClause;
|
|
63822
63875
|
}());
|
|
63823
|
-
exports.CatchClause = CatchClause;
|
|
63876
|
+
exports$1.CatchClause = CatchClause;
|
|
63824
63877
|
var ClassBody = (function () {
|
|
63825
63878
|
function ClassBody(body) {
|
|
63826
63879
|
this.type = syntax_1.Syntax.ClassBody;
|
|
@@ -63828,7 +63881,7 @@ function requireEsprima$1 () {
|
|
|
63828
63881
|
}
|
|
63829
63882
|
return ClassBody;
|
|
63830
63883
|
}());
|
|
63831
|
-
exports.ClassBody = ClassBody;
|
|
63884
|
+
exports$1.ClassBody = ClassBody;
|
|
63832
63885
|
var ClassDeclaration = (function () {
|
|
63833
63886
|
function ClassDeclaration(id, superClass, body) {
|
|
63834
63887
|
this.type = syntax_1.Syntax.ClassDeclaration;
|
|
@@ -63838,7 +63891,7 @@ function requireEsprima$1 () {
|
|
|
63838
63891
|
}
|
|
63839
63892
|
return ClassDeclaration;
|
|
63840
63893
|
}());
|
|
63841
|
-
exports.ClassDeclaration = ClassDeclaration;
|
|
63894
|
+
exports$1.ClassDeclaration = ClassDeclaration;
|
|
63842
63895
|
var ClassExpression = (function () {
|
|
63843
63896
|
function ClassExpression(id, superClass, body) {
|
|
63844
63897
|
this.type = syntax_1.Syntax.ClassExpression;
|
|
@@ -63848,7 +63901,7 @@ function requireEsprima$1 () {
|
|
|
63848
63901
|
}
|
|
63849
63902
|
return ClassExpression;
|
|
63850
63903
|
}());
|
|
63851
|
-
exports.ClassExpression = ClassExpression;
|
|
63904
|
+
exports$1.ClassExpression = ClassExpression;
|
|
63852
63905
|
var ComputedMemberExpression = (function () {
|
|
63853
63906
|
function ComputedMemberExpression(object, property) {
|
|
63854
63907
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -63858,7 +63911,7 @@ function requireEsprima$1 () {
|
|
|
63858
63911
|
}
|
|
63859
63912
|
return ComputedMemberExpression;
|
|
63860
63913
|
}());
|
|
63861
|
-
exports.ComputedMemberExpression = ComputedMemberExpression;
|
|
63914
|
+
exports$1.ComputedMemberExpression = ComputedMemberExpression;
|
|
63862
63915
|
var ConditionalExpression = (function () {
|
|
63863
63916
|
function ConditionalExpression(test, consequent, alternate) {
|
|
63864
63917
|
this.type = syntax_1.Syntax.ConditionalExpression;
|
|
@@ -63868,7 +63921,7 @@ function requireEsprima$1 () {
|
|
|
63868
63921
|
}
|
|
63869
63922
|
return ConditionalExpression;
|
|
63870
63923
|
}());
|
|
63871
|
-
exports.ConditionalExpression = ConditionalExpression;
|
|
63924
|
+
exports$1.ConditionalExpression = ConditionalExpression;
|
|
63872
63925
|
var ContinueStatement = (function () {
|
|
63873
63926
|
function ContinueStatement(label) {
|
|
63874
63927
|
this.type = syntax_1.Syntax.ContinueStatement;
|
|
@@ -63876,14 +63929,14 @@ function requireEsprima$1 () {
|
|
|
63876
63929
|
}
|
|
63877
63930
|
return ContinueStatement;
|
|
63878
63931
|
}());
|
|
63879
|
-
exports.ContinueStatement = ContinueStatement;
|
|
63932
|
+
exports$1.ContinueStatement = ContinueStatement;
|
|
63880
63933
|
var DebuggerStatement = (function () {
|
|
63881
63934
|
function DebuggerStatement() {
|
|
63882
63935
|
this.type = syntax_1.Syntax.DebuggerStatement;
|
|
63883
63936
|
}
|
|
63884
63937
|
return DebuggerStatement;
|
|
63885
63938
|
}());
|
|
63886
|
-
exports.DebuggerStatement = DebuggerStatement;
|
|
63939
|
+
exports$1.DebuggerStatement = DebuggerStatement;
|
|
63887
63940
|
var Directive = (function () {
|
|
63888
63941
|
function Directive(expression, directive) {
|
|
63889
63942
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -63892,7 +63945,7 @@ function requireEsprima$1 () {
|
|
|
63892
63945
|
}
|
|
63893
63946
|
return Directive;
|
|
63894
63947
|
}());
|
|
63895
|
-
exports.Directive = Directive;
|
|
63948
|
+
exports$1.Directive = Directive;
|
|
63896
63949
|
var DoWhileStatement = (function () {
|
|
63897
63950
|
function DoWhileStatement(body, test) {
|
|
63898
63951
|
this.type = syntax_1.Syntax.DoWhileStatement;
|
|
@@ -63901,14 +63954,14 @@ function requireEsprima$1 () {
|
|
|
63901
63954
|
}
|
|
63902
63955
|
return DoWhileStatement;
|
|
63903
63956
|
}());
|
|
63904
|
-
exports.DoWhileStatement = DoWhileStatement;
|
|
63957
|
+
exports$1.DoWhileStatement = DoWhileStatement;
|
|
63905
63958
|
var EmptyStatement = (function () {
|
|
63906
63959
|
function EmptyStatement() {
|
|
63907
63960
|
this.type = syntax_1.Syntax.EmptyStatement;
|
|
63908
63961
|
}
|
|
63909
63962
|
return EmptyStatement;
|
|
63910
63963
|
}());
|
|
63911
|
-
exports.EmptyStatement = EmptyStatement;
|
|
63964
|
+
exports$1.EmptyStatement = EmptyStatement;
|
|
63912
63965
|
var ExportAllDeclaration = (function () {
|
|
63913
63966
|
function ExportAllDeclaration(source) {
|
|
63914
63967
|
this.type = syntax_1.Syntax.ExportAllDeclaration;
|
|
@@ -63916,7 +63969,7 @@ function requireEsprima$1 () {
|
|
|
63916
63969
|
}
|
|
63917
63970
|
return ExportAllDeclaration;
|
|
63918
63971
|
}());
|
|
63919
|
-
exports.ExportAllDeclaration = ExportAllDeclaration;
|
|
63972
|
+
exports$1.ExportAllDeclaration = ExportAllDeclaration;
|
|
63920
63973
|
var ExportDefaultDeclaration = (function () {
|
|
63921
63974
|
function ExportDefaultDeclaration(declaration) {
|
|
63922
63975
|
this.type = syntax_1.Syntax.ExportDefaultDeclaration;
|
|
@@ -63924,7 +63977,7 @@ function requireEsprima$1 () {
|
|
|
63924
63977
|
}
|
|
63925
63978
|
return ExportDefaultDeclaration;
|
|
63926
63979
|
}());
|
|
63927
|
-
exports.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
63980
|
+
exports$1.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
63928
63981
|
var ExportNamedDeclaration = (function () {
|
|
63929
63982
|
function ExportNamedDeclaration(declaration, specifiers, source) {
|
|
63930
63983
|
this.type = syntax_1.Syntax.ExportNamedDeclaration;
|
|
@@ -63934,7 +63987,7 @@ function requireEsprima$1 () {
|
|
|
63934
63987
|
}
|
|
63935
63988
|
return ExportNamedDeclaration;
|
|
63936
63989
|
}());
|
|
63937
|
-
exports.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
63990
|
+
exports$1.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
63938
63991
|
var ExportSpecifier = (function () {
|
|
63939
63992
|
function ExportSpecifier(local, exported) {
|
|
63940
63993
|
this.type = syntax_1.Syntax.ExportSpecifier;
|
|
@@ -63943,7 +63996,7 @@ function requireEsprima$1 () {
|
|
|
63943
63996
|
}
|
|
63944
63997
|
return ExportSpecifier;
|
|
63945
63998
|
}());
|
|
63946
|
-
exports.ExportSpecifier = ExportSpecifier;
|
|
63999
|
+
exports$1.ExportSpecifier = ExportSpecifier;
|
|
63947
64000
|
var ExpressionStatement = (function () {
|
|
63948
64001
|
function ExpressionStatement(expression) {
|
|
63949
64002
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -63951,7 +64004,7 @@ function requireEsprima$1 () {
|
|
|
63951
64004
|
}
|
|
63952
64005
|
return ExpressionStatement;
|
|
63953
64006
|
}());
|
|
63954
|
-
exports.ExpressionStatement = ExpressionStatement;
|
|
64007
|
+
exports$1.ExpressionStatement = ExpressionStatement;
|
|
63955
64008
|
var ForInStatement = (function () {
|
|
63956
64009
|
function ForInStatement(left, right, body) {
|
|
63957
64010
|
this.type = syntax_1.Syntax.ForInStatement;
|
|
@@ -63962,7 +64015,7 @@ function requireEsprima$1 () {
|
|
|
63962
64015
|
}
|
|
63963
64016
|
return ForInStatement;
|
|
63964
64017
|
}());
|
|
63965
|
-
exports.ForInStatement = ForInStatement;
|
|
64018
|
+
exports$1.ForInStatement = ForInStatement;
|
|
63966
64019
|
var ForOfStatement = (function () {
|
|
63967
64020
|
function ForOfStatement(left, right, body) {
|
|
63968
64021
|
this.type = syntax_1.Syntax.ForOfStatement;
|
|
@@ -63972,7 +64025,7 @@ function requireEsprima$1 () {
|
|
|
63972
64025
|
}
|
|
63973
64026
|
return ForOfStatement;
|
|
63974
64027
|
}());
|
|
63975
|
-
exports.ForOfStatement = ForOfStatement;
|
|
64028
|
+
exports$1.ForOfStatement = ForOfStatement;
|
|
63976
64029
|
var ForStatement = (function () {
|
|
63977
64030
|
function ForStatement(init, test, update, body) {
|
|
63978
64031
|
this.type = syntax_1.Syntax.ForStatement;
|
|
@@ -63983,7 +64036,7 @@ function requireEsprima$1 () {
|
|
|
63983
64036
|
}
|
|
63984
64037
|
return ForStatement;
|
|
63985
64038
|
}());
|
|
63986
|
-
exports.ForStatement = ForStatement;
|
|
64039
|
+
exports$1.ForStatement = ForStatement;
|
|
63987
64040
|
var FunctionDeclaration = (function () {
|
|
63988
64041
|
function FunctionDeclaration(id, params, body, generator) {
|
|
63989
64042
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -63996,7 +64049,7 @@ function requireEsprima$1 () {
|
|
|
63996
64049
|
}
|
|
63997
64050
|
return FunctionDeclaration;
|
|
63998
64051
|
}());
|
|
63999
|
-
exports.FunctionDeclaration = FunctionDeclaration;
|
|
64052
|
+
exports$1.FunctionDeclaration = FunctionDeclaration;
|
|
64000
64053
|
var FunctionExpression = (function () {
|
|
64001
64054
|
function FunctionExpression(id, params, body, generator) {
|
|
64002
64055
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -64009,7 +64062,7 @@ function requireEsprima$1 () {
|
|
|
64009
64062
|
}
|
|
64010
64063
|
return FunctionExpression;
|
|
64011
64064
|
}());
|
|
64012
|
-
exports.FunctionExpression = FunctionExpression;
|
|
64065
|
+
exports$1.FunctionExpression = FunctionExpression;
|
|
64013
64066
|
var Identifier = (function () {
|
|
64014
64067
|
function Identifier(name) {
|
|
64015
64068
|
this.type = syntax_1.Syntax.Identifier;
|
|
@@ -64017,7 +64070,7 @@ function requireEsprima$1 () {
|
|
|
64017
64070
|
}
|
|
64018
64071
|
return Identifier;
|
|
64019
64072
|
}());
|
|
64020
|
-
exports.Identifier = Identifier;
|
|
64073
|
+
exports$1.Identifier = Identifier;
|
|
64021
64074
|
var IfStatement = (function () {
|
|
64022
64075
|
function IfStatement(test, consequent, alternate) {
|
|
64023
64076
|
this.type = syntax_1.Syntax.IfStatement;
|
|
@@ -64027,7 +64080,7 @@ function requireEsprima$1 () {
|
|
|
64027
64080
|
}
|
|
64028
64081
|
return IfStatement;
|
|
64029
64082
|
}());
|
|
64030
|
-
exports.IfStatement = IfStatement;
|
|
64083
|
+
exports$1.IfStatement = IfStatement;
|
|
64031
64084
|
var ImportDeclaration = (function () {
|
|
64032
64085
|
function ImportDeclaration(specifiers, source) {
|
|
64033
64086
|
this.type = syntax_1.Syntax.ImportDeclaration;
|
|
@@ -64036,7 +64089,7 @@ function requireEsprima$1 () {
|
|
|
64036
64089
|
}
|
|
64037
64090
|
return ImportDeclaration;
|
|
64038
64091
|
}());
|
|
64039
|
-
exports.ImportDeclaration = ImportDeclaration;
|
|
64092
|
+
exports$1.ImportDeclaration = ImportDeclaration;
|
|
64040
64093
|
var ImportDefaultSpecifier = (function () {
|
|
64041
64094
|
function ImportDefaultSpecifier(local) {
|
|
64042
64095
|
this.type = syntax_1.Syntax.ImportDefaultSpecifier;
|
|
@@ -64044,7 +64097,7 @@ function requireEsprima$1 () {
|
|
|
64044
64097
|
}
|
|
64045
64098
|
return ImportDefaultSpecifier;
|
|
64046
64099
|
}());
|
|
64047
|
-
exports.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
64100
|
+
exports$1.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
64048
64101
|
var ImportNamespaceSpecifier = (function () {
|
|
64049
64102
|
function ImportNamespaceSpecifier(local) {
|
|
64050
64103
|
this.type = syntax_1.Syntax.ImportNamespaceSpecifier;
|
|
@@ -64052,7 +64105,7 @@ function requireEsprima$1 () {
|
|
|
64052
64105
|
}
|
|
64053
64106
|
return ImportNamespaceSpecifier;
|
|
64054
64107
|
}());
|
|
64055
|
-
exports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
64108
|
+
exports$1.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
64056
64109
|
var ImportSpecifier = (function () {
|
|
64057
64110
|
function ImportSpecifier(local, imported) {
|
|
64058
64111
|
this.type = syntax_1.Syntax.ImportSpecifier;
|
|
@@ -64061,7 +64114,7 @@ function requireEsprima$1 () {
|
|
|
64061
64114
|
}
|
|
64062
64115
|
return ImportSpecifier;
|
|
64063
64116
|
}());
|
|
64064
|
-
exports.ImportSpecifier = ImportSpecifier;
|
|
64117
|
+
exports$1.ImportSpecifier = ImportSpecifier;
|
|
64065
64118
|
var LabeledStatement = (function () {
|
|
64066
64119
|
function LabeledStatement(label, body) {
|
|
64067
64120
|
this.type = syntax_1.Syntax.LabeledStatement;
|
|
@@ -64070,7 +64123,7 @@ function requireEsprima$1 () {
|
|
|
64070
64123
|
}
|
|
64071
64124
|
return LabeledStatement;
|
|
64072
64125
|
}());
|
|
64073
|
-
exports.LabeledStatement = LabeledStatement;
|
|
64126
|
+
exports$1.LabeledStatement = LabeledStatement;
|
|
64074
64127
|
var Literal = (function () {
|
|
64075
64128
|
function Literal(value, raw) {
|
|
64076
64129
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -64079,7 +64132,7 @@ function requireEsprima$1 () {
|
|
|
64079
64132
|
}
|
|
64080
64133
|
return Literal;
|
|
64081
64134
|
}());
|
|
64082
|
-
exports.Literal = Literal;
|
|
64135
|
+
exports$1.Literal = Literal;
|
|
64083
64136
|
var MetaProperty = (function () {
|
|
64084
64137
|
function MetaProperty(meta, property) {
|
|
64085
64138
|
this.type = syntax_1.Syntax.MetaProperty;
|
|
@@ -64088,7 +64141,7 @@ function requireEsprima$1 () {
|
|
|
64088
64141
|
}
|
|
64089
64142
|
return MetaProperty;
|
|
64090
64143
|
}());
|
|
64091
|
-
exports.MetaProperty = MetaProperty;
|
|
64144
|
+
exports$1.MetaProperty = MetaProperty;
|
|
64092
64145
|
var MethodDefinition = (function () {
|
|
64093
64146
|
function MethodDefinition(key, computed, value, kind, isStatic) {
|
|
64094
64147
|
this.type = syntax_1.Syntax.MethodDefinition;
|
|
@@ -64100,7 +64153,7 @@ function requireEsprima$1 () {
|
|
|
64100
64153
|
}
|
|
64101
64154
|
return MethodDefinition;
|
|
64102
64155
|
}());
|
|
64103
|
-
exports.MethodDefinition = MethodDefinition;
|
|
64156
|
+
exports$1.MethodDefinition = MethodDefinition;
|
|
64104
64157
|
var Module = (function () {
|
|
64105
64158
|
function Module(body) {
|
|
64106
64159
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -64109,7 +64162,7 @@ function requireEsprima$1 () {
|
|
|
64109
64162
|
}
|
|
64110
64163
|
return Module;
|
|
64111
64164
|
}());
|
|
64112
|
-
exports.Module = Module;
|
|
64165
|
+
exports$1.Module = Module;
|
|
64113
64166
|
var NewExpression = (function () {
|
|
64114
64167
|
function NewExpression(callee, args) {
|
|
64115
64168
|
this.type = syntax_1.Syntax.NewExpression;
|
|
@@ -64118,7 +64171,7 @@ function requireEsprima$1 () {
|
|
|
64118
64171
|
}
|
|
64119
64172
|
return NewExpression;
|
|
64120
64173
|
}());
|
|
64121
|
-
exports.NewExpression = NewExpression;
|
|
64174
|
+
exports$1.NewExpression = NewExpression;
|
|
64122
64175
|
var ObjectExpression = (function () {
|
|
64123
64176
|
function ObjectExpression(properties) {
|
|
64124
64177
|
this.type = syntax_1.Syntax.ObjectExpression;
|
|
@@ -64126,7 +64179,7 @@ function requireEsprima$1 () {
|
|
|
64126
64179
|
}
|
|
64127
64180
|
return ObjectExpression;
|
|
64128
64181
|
}());
|
|
64129
|
-
exports.ObjectExpression = ObjectExpression;
|
|
64182
|
+
exports$1.ObjectExpression = ObjectExpression;
|
|
64130
64183
|
var ObjectPattern = (function () {
|
|
64131
64184
|
function ObjectPattern(properties) {
|
|
64132
64185
|
this.type = syntax_1.Syntax.ObjectPattern;
|
|
@@ -64134,7 +64187,7 @@ function requireEsprima$1 () {
|
|
|
64134
64187
|
}
|
|
64135
64188
|
return ObjectPattern;
|
|
64136
64189
|
}());
|
|
64137
|
-
exports.ObjectPattern = ObjectPattern;
|
|
64190
|
+
exports$1.ObjectPattern = ObjectPattern;
|
|
64138
64191
|
var Property = (function () {
|
|
64139
64192
|
function Property(kind, key, computed, value, method, shorthand) {
|
|
64140
64193
|
this.type = syntax_1.Syntax.Property;
|
|
@@ -64147,7 +64200,7 @@ function requireEsprima$1 () {
|
|
|
64147
64200
|
}
|
|
64148
64201
|
return Property;
|
|
64149
64202
|
}());
|
|
64150
|
-
exports.Property = Property;
|
|
64203
|
+
exports$1.Property = Property;
|
|
64151
64204
|
var RegexLiteral = (function () {
|
|
64152
64205
|
function RegexLiteral(value, raw, pattern, flags) {
|
|
64153
64206
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -64157,7 +64210,7 @@ function requireEsprima$1 () {
|
|
|
64157
64210
|
}
|
|
64158
64211
|
return RegexLiteral;
|
|
64159
64212
|
}());
|
|
64160
|
-
exports.RegexLiteral = RegexLiteral;
|
|
64213
|
+
exports$1.RegexLiteral = RegexLiteral;
|
|
64161
64214
|
var RestElement = (function () {
|
|
64162
64215
|
function RestElement(argument) {
|
|
64163
64216
|
this.type = syntax_1.Syntax.RestElement;
|
|
@@ -64165,7 +64218,7 @@ function requireEsprima$1 () {
|
|
|
64165
64218
|
}
|
|
64166
64219
|
return RestElement;
|
|
64167
64220
|
}());
|
|
64168
|
-
exports.RestElement = RestElement;
|
|
64221
|
+
exports$1.RestElement = RestElement;
|
|
64169
64222
|
var ReturnStatement = (function () {
|
|
64170
64223
|
function ReturnStatement(argument) {
|
|
64171
64224
|
this.type = syntax_1.Syntax.ReturnStatement;
|
|
@@ -64173,7 +64226,7 @@ function requireEsprima$1 () {
|
|
|
64173
64226
|
}
|
|
64174
64227
|
return ReturnStatement;
|
|
64175
64228
|
}());
|
|
64176
|
-
exports.ReturnStatement = ReturnStatement;
|
|
64229
|
+
exports$1.ReturnStatement = ReturnStatement;
|
|
64177
64230
|
var Script = (function () {
|
|
64178
64231
|
function Script(body) {
|
|
64179
64232
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -64182,7 +64235,7 @@ function requireEsprima$1 () {
|
|
|
64182
64235
|
}
|
|
64183
64236
|
return Script;
|
|
64184
64237
|
}());
|
|
64185
|
-
exports.Script = Script;
|
|
64238
|
+
exports$1.Script = Script;
|
|
64186
64239
|
var SequenceExpression = (function () {
|
|
64187
64240
|
function SequenceExpression(expressions) {
|
|
64188
64241
|
this.type = syntax_1.Syntax.SequenceExpression;
|
|
@@ -64190,7 +64243,7 @@ function requireEsprima$1 () {
|
|
|
64190
64243
|
}
|
|
64191
64244
|
return SequenceExpression;
|
|
64192
64245
|
}());
|
|
64193
|
-
exports.SequenceExpression = SequenceExpression;
|
|
64246
|
+
exports$1.SequenceExpression = SequenceExpression;
|
|
64194
64247
|
var SpreadElement = (function () {
|
|
64195
64248
|
function SpreadElement(argument) {
|
|
64196
64249
|
this.type = syntax_1.Syntax.SpreadElement;
|
|
@@ -64198,7 +64251,7 @@ function requireEsprima$1 () {
|
|
|
64198
64251
|
}
|
|
64199
64252
|
return SpreadElement;
|
|
64200
64253
|
}());
|
|
64201
|
-
exports.SpreadElement = SpreadElement;
|
|
64254
|
+
exports$1.SpreadElement = SpreadElement;
|
|
64202
64255
|
var StaticMemberExpression = (function () {
|
|
64203
64256
|
function StaticMemberExpression(object, property) {
|
|
64204
64257
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -64208,14 +64261,14 @@ function requireEsprima$1 () {
|
|
|
64208
64261
|
}
|
|
64209
64262
|
return StaticMemberExpression;
|
|
64210
64263
|
}());
|
|
64211
|
-
exports.StaticMemberExpression = StaticMemberExpression;
|
|
64264
|
+
exports$1.StaticMemberExpression = StaticMemberExpression;
|
|
64212
64265
|
var Super = (function () {
|
|
64213
64266
|
function Super() {
|
|
64214
64267
|
this.type = syntax_1.Syntax.Super;
|
|
64215
64268
|
}
|
|
64216
64269
|
return Super;
|
|
64217
64270
|
}());
|
|
64218
|
-
exports.Super = Super;
|
|
64271
|
+
exports$1.Super = Super;
|
|
64219
64272
|
var SwitchCase = (function () {
|
|
64220
64273
|
function SwitchCase(test, consequent) {
|
|
64221
64274
|
this.type = syntax_1.Syntax.SwitchCase;
|
|
@@ -64224,7 +64277,7 @@ function requireEsprima$1 () {
|
|
|
64224
64277
|
}
|
|
64225
64278
|
return SwitchCase;
|
|
64226
64279
|
}());
|
|
64227
|
-
exports.SwitchCase = SwitchCase;
|
|
64280
|
+
exports$1.SwitchCase = SwitchCase;
|
|
64228
64281
|
var SwitchStatement = (function () {
|
|
64229
64282
|
function SwitchStatement(discriminant, cases) {
|
|
64230
64283
|
this.type = syntax_1.Syntax.SwitchStatement;
|
|
@@ -64233,7 +64286,7 @@ function requireEsprima$1 () {
|
|
|
64233
64286
|
}
|
|
64234
64287
|
return SwitchStatement;
|
|
64235
64288
|
}());
|
|
64236
|
-
exports.SwitchStatement = SwitchStatement;
|
|
64289
|
+
exports$1.SwitchStatement = SwitchStatement;
|
|
64237
64290
|
var TaggedTemplateExpression = (function () {
|
|
64238
64291
|
function TaggedTemplateExpression(tag, quasi) {
|
|
64239
64292
|
this.type = syntax_1.Syntax.TaggedTemplateExpression;
|
|
@@ -64242,7 +64295,7 @@ function requireEsprima$1 () {
|
|
|
64242
64295
|
}
|
|
64243
64296
|
return TaggedTemplateExpression;
|
|
64244
64297
|
}());
|
|
64245
|
-
exports.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
64298
|
+
exports$1.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
64246
64299
|
var TemplateElement = (function () {
|
|
64247
64300
|
function TemplateElement(value, tail) {
|
|
64248
64301
|
this.type = syntax_1.Syntax.TemplateElement;
|
|
@@ -64251,7 +64304,7 @@ function requireEsprima$1 () {
|
|
|
64251
64304
|
}
|
|
64252
64305
|
return TemplateElement;
|
|
64253
64306
|
}());
|
|
64254
|
-
exports.TemplateElement = TemplateElement;
|
|
64307
|
+
exports$1.TemplateElement = TemplateElement;
|
|
64255
64308
|
var TemplateLiteral = (function () {
|
|
64256
64309
|
function TemplateLiteral(quasis, expressions) {
|
|
64257
64310
|
this.type = syntax_1.Syntax.TemplateLiteral;
|
|
@@ -64260,14 +64313,14 @@ function requireEsprima$1 () {
|
|
|
64260
64313
|
}
|
|
64261
64314
|
return TemplateLiteral;
|
|
64262
64315
|
}());
|
|
64263
|
-
exports.TemplateLiteral = TemplateLiteral;
|
|
64316
|
+
exports$1.TemplateLiteral = TemplateLiteral;
|
|
64264
64317
|
var ThisExpression = (function () {
|
|
64265
64318
|
function ThisExpression() {
|
|
64266
64319
|
this.type = syntax_1.Syntax.ThisExpression;
|
|
64267
64320
|
}
|
|
64268
64321
|
return ThisExpression;
|
|
64269
64322
|
}());
|
|
64270
|
-
exports.ThisExpression = ThisExpression;
|
|
64323
|
+
exports$1.ThisExpression = ThisExpression;
|
|
64271
64324
|
var ThrowStatement = (function () {
|
|
64272
64325
|
function ThrowStatement(argument) {
|
|
64273
64326
|
this.type = syntax_1.Syntax.ThrowStatement;
|
|
@@ -64275,7 +64328,7 @@ function requireEsprima$1 () {
|
|
|
64275
64328
|
}
|
|
64276
64329
|
return ThrowStatement;
|
|
64277
64330
|
}());
|
|
64278
|
-
exports.ThrowStatement = ThrowStatement;
|
|
64331
|
+
exports$1.ThrowStatement = ThrowStatement;
|
|
64279
64332
|
var TryStatement = (function () {
|
|
64280
64333
|
function TryStatement(block, handler, finalizer) {
|
|
64281
64334
|
this.type = syntax_1.Syntax.TryStatement;
|
|
@@ -64285,7 +64338,7 @@ function requireEsprima$1 () {
|
|
|
64285
64338
|
}
|
|
64286
64339
|
return TryStatement;
|
|
64287
64340
|
}());
|
|
64288
|
-
exports.TryStatement = TryStatement;
|
|
64341
|
+
exports$1.TryStatement = TryStatement;
|
|
64289
64342
|
var UnaryExpression = (function () {
|
|
64290
64343
|
function UnaryExpression(operator, argument) {
|
|
64291
64344
|
this.type = syntax_1.Syntax.UnaryExpression;
|
|
@@ -64295,7 +64348,7 @@ function requireEsprima$1 () {
|
|
|
64295
64348
|
}
|
|
64296
64349
|
return UnaryExpression;
|
|
64297
64350
|
}());
|
|
64298
|
-
exports.UnaryExpression = UnaryExpression;
|
|
64351
|
+
exports$1.UnaryExpression = UnaryExpression;
|
|
64299
64352
|
var UpdateExpression = (function () {
|
|
64300
64353
|
function UpdateExpression(operator, argument, prefix) {
|
|
64301
64354
|
this.type = syntax_1.Syntax.UpdateExpression;
|
|
@@ -64305,7 +64358,7 @@ function requireEsprima$1 () {
|
|
|
64305
64358
|
}
|
|
64306
64359
|
return UpdateExpression;
|
|
64307
64360
|
}());
|
|
64308
|
-
exports.UpdateExpression = UpdateExpression;
|
|
64361
|
+
exports$1.UpdateExpression = UpdateExpression;
|
|
64309
64362
|
var VariableDeclaration = (function () {
|
|
64310
64363
|
function VariableDeclaration(declarations, kind) {
|
|
64311
64364
|
this.type = syntax_1.Syntax.VariableDeclaration;
|
|
@@ -64314,7 +64367,7 @@ function requireEsprima$1 () {
|
|
|
64314
64367
|
}
|
|
64315
64368
|
return VariableDeclaration;
|
|
64316
64369
|
}());
|
|
64317
|
-
exports.VariableDeclaration = VariableDeclaration;
|
|
64370
|
+
exports$1.VariableDeclaration = VariableDeclaration;
|
|
64318
64371
|
var VariableDeclarator = (function () {
|
|
64319
64372
|
function VariableDeclarator(id, init) {
|
|
64320
64373
|
this.type = syntax_1.Syntax.VariableDeclarator;
|
|
@@ -64323,7 +64376,7 @@ function requireEsprima$1 () {
|
|
|
64323
64376
|
}
|
|
64324
64377
|
return VariableDeclarator;
|
|
64325
64378
|
}());
|
|
64326
|
-
exports.VariableDeclarator = VariableDeclarator;
|
|
64379
|
+
exports$1.VariableDeclarator = VariableDeclarator;
|
|
64327
64380
|
var WhileStatement = (function () {
|
|
64328
64381
|
function WhileStatement(test, body) {
|
|
64329
64382
|
this.type = syntax_1.Syntax.WhileStatement;
|
|
@@ -64332,7 +64385,7 @@ function requireEsprima$1 () {
|
|
|
64332
64385
|
}
|
|
64333
64386
|
return WhileStatement;
|
|
64334
64387
|
}());
|
|
64335
|
-
exports.WhileStatement = WhileStatement;
|
|
64388
|
+
exports$1.WhileStatement = WhileStatement;
|
|
64336
64389
|
var WithStatement = (function () {
|
|
64337
64390
|
function WithStatement(object, body) {
|
|
64338
64391
|
this.type = syntax_1.Syntax.WithStatement;
|
|
@@ -64341,7 +64394,7 @@ function requireEsprima$1 () {
|
|
|
64341
64394
|
}
|
|
64342
64395
|
return WithStatement;
|
|
64343
64396
|
}());
|
|
64344
|
-
exports.WithStatement = WithStatement;
|
|
64397
|
+
exports$1.WithStatement = WithStatement;
|
|
64345
64398
|
var YieldExpression = (function () {
|
|
64346
64399
|
function YieldExpression(argument, delegate) {
|
|
64347
64400
|
this.type = syntax_1.Syntax.YieldExpression;
|
|
@@ -64350,10 +64403,10 @@ function requireEsprima$1 () {
|
|
|
64350
64403
|
}
|
|
64351
64404
|
return YieldExpression;
|
|
64352
64405
|
}());
|
|
64353
|
-
exports.YieldExpression = YieldExpression;
|
|
64406
|
+
exports$1.YieldExpression = YieldExpression;
|
|
64354
64407
|
},
|
|
64355
|
-
function(module, exports, __webpack_require__) {
|
|
64356
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64408
|
+
function(module, exports$1, __webpack_require__) {
|
|
64409
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
64357
64410
|
var assert_1 = __webpack_require__(9);
|
|
64358
64411
|
var error_handler_1 = __webpack_require__(10);
|
|
64359
64412
|
var messages_1 = __webpack_require__(11);
|
|
@@ -67351,19 +67404,19 @@ function requireEsprima$1 () {
|
|
|
67351
67404
|
};
|
|
67352
67405
|
return Parser;
|
|
67353
67406
|
}());
|
|
67354
|
-
exports.Parser = Parser;
|
|
67407
|
+
exports$1.Parser = Parser;
|
|
67355
67408
|
},
|
|
67356
|
-
function(module, exports) {
|
|
67357
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67409
|
+
function(module, exports$1) {
|
|
67410
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67358
67411
|
function assert(condition, message) {
|
|
67359
67412
|
if (!condition) {
|
|
67360
67413
|
throw new Error('ASSERT: ' + message);
|
|
67361
67414
|
}
|
|
67362
67415
|
}
|
|
67363
|
-
exports.assert = assert;
|
|
67416
|
+
exports$1.assert = assert;
|
|
67364
67417
|
},
|
|
67365
|
-
function(module, exports) {
|
|
67366
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67418
|
+
function(module, exports$1) {
|
|
67419
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67367
67420
|
var ErrorHandler = (function () {
|
|
67368
67421
|
function ErrorHandler() {
|
|
67369
67422
|
this.errors = [];
|
|
@@ -67415,11 +67468,11 @@ function requireEsprima$1 () {
|
|
|
67415
67468
|
};
|
|
67416
67469
|
return ErrorHandler;
|
|
67417
67470
|
}());
|
|
67418
|
-
exports.ErrorHandler = ErrorHandler;
|
|
67471
|
+
exports$1.ErrorHandler = ErrorHandler;
|
|
67419
67472
|
},
|
|
67420
|
-
function(module, exports) {
|
|
67421
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67422
|
-
exports.Messages = {
|
|
67473
|
+
function(module, exports$1) {
|
|
67474
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67475
|
+
exports$1.Messages = {
|
|
67423
67476
|
BadGetterArity: 'Getter must not have any formal parameters',
|
|
67424
67477
|
BadSetterArity: 'Setter must have exactly one formal parameter',
|
|
67425
67478
|
BadSetterRestParameter: 'Setter function argument must not be a rest parameter',
|
|
@@ -67480,8 +67533,8 @@ function requireEsprima$1 () {
|
|
|
67480
67533
|
UnterminatedRegExp: 'Invalid regular expression: missing /'
|
|
67481
67534
|
};
|
|
67482
67535
|
},
|
|
67483
|
-
function(module, exports, __webpack_require__) {
|
|
67484
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67536
|
+
function(module, exports$1, __webpack_require__) {
|
|
67537
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
67485
67538
|
var assert_1 = __webpack_require__(9);
|
|
67486
67539
|
var character_1 = __webpack_require__(4);
|
|
67487
67540
|
var messages_1 = __webpack_require__(11);
|
|
@@ -68563,25 +68616,25 @@ function requireEsprima$1 () {
|
|
|
68563
68616
|
};
|
|
68564
68617
|
return Scanner;
|
|
68565
68618
|
}());
|
|
68566
|
-
exports.Scanner = Scanner;
|
|
68619
|
+
exports$1.Scanner = Scanner;
|
|
68567
68620
|
},
|
|
68568
|
-
function(module, exports) {
|
|
68569
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68570
|
-
exports.TokenName = {};
|
|
68571
|
-
exports.TokenName[1 ] = 'Boolean';
|
|
68572
|
-
exports.TokenName[2 ] = '<end>';
|
|
68573
|
-
exports.TokenName[3 ] = 'Identifier';
|
|
68574
|
-
exports.TokenName[4 ] = 'Keyword';
|
|
68575
|
-
exports.TokenName[5 ] = 'Null';
|
|
68576
|
-
exports.TokenName[6 ] = 'Numeric';
|
|
68577
|
-
exports.TokenName[7 ] = 'Punctuator';
|
|
68578
|
-
exports.TokenName[8 ] = 'String';
|
|
68579
|
-
exports.TokenName[9 ] = 'RegularExpression';
|
|
68580
|
-
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';
|
|
68581
68634
|
},
|
|
68582
|
-
function(module, exports) {
|
|
68583
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68584
|
-
exports.XHTMLEntities = {
|
|
68635
|
+
function(module, exports$1) {
|
|
68636
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
68637
|
+
exports$1.XHTMLEntities = {
|
|
68585
68638
|
quot: '\u0022',
|
|
68586
68639
|
amp: '\u0026',
|
|
68587
68640
|
apos: '\u0027',
|
|
@@ -68836,8 +68889,8 @@ function requireEsprima$1 () {
|
|
|
68836
68889
|
rang: '\u27E9'
|
|
68837
68890
|
};
|
|
68838
68891
|
},
|
|
68839
|
-
function(module, exports, __webpack_require__) {
|
|
68840
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68892
|
+
function(module, exports$1, __webpack_require__) {
|
|
68893
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
68841
68894
|
var error_handler_1 = __webpack_require__(10);
|
|
68842
68895
|
var scanner_1 = __webpack_require__(12);
|
|
68843
68896
|
var token_1 = __webpack_require__(13);
|
|
@@ -68971,7 +69024,7 @@ function requireEsprima$1 () {
|
|
|
68971
69024
|
};
|
|
68972
69025
|
return Tokenizer;
|
|
68973
69026
|
}());
|
|
68974
|
-
exports.Tokenizer = Tokenizer;
|
|
69027
|
+
exports$1.Tokenizer = Tokenizer;
|
|
68975
69028
|
}
|
|
68976
69029
|
])
|
|
68977
69030
|
});
|
|
@@ -70066,8 +70119,8 @@ var hasRequiredPath;
|
|
|
70066
70119
|
function requirePath () {
|
|
70067
70120
|
if (hasRequiredPath) return path.exports;
|
|
70068
70121
|
hasRequiredPath = 1;
|
|
70069
|
-
(function (module, exports) {
|
|
70070
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70122
|
+
(function (module, exports$1) {
|
|
70123
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70071
70124
|
var tslib_1 = require$$0;
|
|
70072
70125
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70073
70126
|
var Op = Object.prototype;
|
|
@@ -70369,8 +70422,8 @@ function requirePath () {
|
|
|
70369
70422
|
};
|
|
70370
70423
|
return Path;
|
|
70371
70424
|
}
|
|
70372
|
-
exports.default = pathPlugin;
|
|
70373
|
-
module.exports = exports["default"];
|
|
70425
|
+
exports$1.default = pathPlugin;
|
|
70426
|
+
module.exports = exports$1["default"];
|
|
70374
70427
|
} (path, path.exports));
|
|
70375
70428
|
return path.exports;
|
|
70376
70429
|
}
|
|
@@ -70382,8 +70435,8 @@ var hasRequiredScope;
|
|
|
70382
70435
|
function requireScope () {
|
|
70383
70436
|
if (hasRequiredScope) return scope.exports;
|
|
70384
70437
|
hasRequiredScope = 1;
|
|
70385
|
-
(function (module, exports) {
|
|
70386
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70438
|
+
(function (module, exports$1) {
|
|
70439
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70387
70440
|
var tslib_1 = require$$0;
|
|
70388
70441
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70389
70442
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
@@ -70668,8 +70721,8 @@ function requireScope () {
|
|
|
70668
70721
|
};
|
|
70669
70722
|
return Scope;
|
|
70670
70723
|
}
|
|
70671
|
-
exports.default = scopePlugin;
|
|
70672
|
-
module.exports = exports["default"];
|
|
70724
|
+
exports$1.default = scopePlugin;
|
|
70725
|
+
module.exports = exports$1["default"];
|
|
70673
70726
|
} (scope, scope.exports));
|
|
70674
70727
|
return scope.exports;
|
|
70675
70728
|
}
|
|
@@ -70679,8 +70732,8 @@ var hasRequiredNodePath;
|
|
|
70679
70732
|
function requireNodePath () {
|
|
70680
70733
|
if (hasRequiredNodePath) return nodePath.exports;
|
|
70681
70734
|
hasRequiredNodePath = 1;
|
|
70682
|
-
(function (module, exports) {
|
|
70683
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70735
|
+
(function (module, exports$1) {
|
|
70736
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
70684
70737
|
var tslib_1 = require$$0;
|
|
70685
70738
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
70686
70739
|
var path_1 = tslib_1.__importDefault(requirePath());
|
|
@@ -71053,8 +71106,8 @@ function requireNodePath () {
|
|
|
71053
71106
|
}
|
|
71054
71107
|
return NodePath;
|
|
71055
71108
|
}
|
|
71056
|
-
exports.default = nodePathPlugin;
|
|
71057
|
-
module.exports = exports["default"];
|
|
71109
|
+
exports$1.default = nodePathPlugin;
|
|
71110
|
+
module.exports = exports$1["default"];
|
|
71058
71111
|
} (nodePath, nodePath.exports));
|
|
71059
71112
|
return nodePath.exports;
|
|
71060
71113
|
}
|
|
@@ -71064,8 +71117,8 @@ var hasRequiredPathVisitor;
|
|
|
71064
71117
|
function requirePathVisitor () {
|
|
71065
71118
|
if (hasRequiredPathVisitor) return pathVisitor.exports;
|
|
71066
71119
|
hasRequiredPathVisitor = 1;
|
|
71067
|
-
(function (module, exports) {
|
|
71068
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71120
|
+
(function (module, exports$1) {
|
|
71121
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71069
71122
|
var tslib_1 = require$$0;
|
|
71070
71123
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71071
71124
|
var node_path_1 = tslib_1.__importDefault(requireNodePath());
|
|
@@ -71366,8 +71419,8 @@ function requirePathVisitor () {
|
|
|
71366
71419
|
};
|
|
71367
71420
|
return PathVisitor;
|
|
71368
71421
|
}
|
|
71369
|
-
exports.default = pathVisitorPlugin;
|
|
71370
|
-
module.exports = exports["default"];
|
|
71422
|
+
exports$1.default = pathVisitorPlugin;
|
|
71423
|
+
module.exports = exports$1["default"];
|
|
71371
71424
|
} (pathVisitor, pathVisitor.exports));
|
|
71372
71425
|
return pathVisitor.exports;
|
|
71373
71426
|
}
|
|
@@ -71379,8 +71432,8 @@ var hasRequiredEquiv;
|
|
|
71379
71432
|
function requireEquiv () {
|
|
71380
71433
|
if (hasRequiredEquiv) return equiv.exports;
|
|
71381
71434
|
hasRequiredEquiv = 1;
|
|
71382
|
-
(function (module, exports) {
|
|
71383
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71435
|
+
(function (module, exports$1) {
|
|
71436
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71384
71437
|
var tslib_1 = require$$0;
|
|
71385
71438
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71386
71439
|
function default_1(fork) {
|
|
@@ -71528,8 +71581,8 @@ function requireEquiv () {
|
|
|
71528
71581
|
}
|
|
71529
71582
|
return astNodesAreEquivalent;
|
|
71530
71583
|
}
|
|
71531
|
-
exports.default = default_1;
|
|
71532
|
-
module.exports = exports["default"];
|
|
71584
|
+
exports$1.default = default_1;
|
|
71585
|
+
module.exports = exports$1["default"];
|
|
71533
71586
|
} (equiv, equiv.exports));
|
|
71534
71587
|
return equiv.exports;
|
|
71535
71588
|
}
|
|
@@ -71539,8 +71592,8 @@ var hasRequiredFork;
|
|
|
71539
71592
|
function requireFork () {
|
|
71540
71593
|
if (hasRequiredFork) return fork.exports;
|
|
71541
71594
|
hasRequiredFork = 1;
|
|
71542
|
-
(function (module, exports) {
|
|
71543
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71595
|
+
(function (module, exports$1) {
|
|
71596
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71544
71597
|
var tslib_1 = require$$0;
|
|
71545
71598
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71546
71599
|
var path_visitor_1 = tslib_1.__importDefault(requirePathVisitor());
|
|
@@ -71574,7 +71627,7 @@ function requireFork () {
|
|
|
71574
71627
|
visit: PathVisitor.visit,
|
|
71575
71628
|
};
|
|
71576
71629
|
}
|
|
71577
|
-
exports.default = default_1;
|
|
71630
|
+
exports$1.default = default_1;
|
|
71578
71631
|
function createFork() {
|
|
71579
71632
|
var used = [];
|
|
71580
71633
|
var usedResult = [];
|
|
@@ -71590,7 +71643,7 @@ function requireFork () {
|
|
|
71590
71643
|
var fork = { use: use };
|
|
71591
71644
|
return fork;
|
|
71592
71645
|
}
|
|
71593
|
-
module.exports = exports["default"];
|
|
71646
|
+
module.exports = exports$1["default"];
|
|
71594
71647
|
} (fork, fork.exports));
|
|
71595
71648
|
return fork.exports;
|
|
71596
71649
|
}
|
|
@@ -71604,8 +71657,8 @@ var hasRequiredShared;
|
|
|
71604
71657
|
function requireShared () {
|
|
71605
71658
|
if (hasRequiredShared) return shared.exports;
|
|
71606
71659
|
hasRequiredShared = 1;
|
|
71607
|
-
(function (module, exports) {
|
|
71608
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71660
|
+
(function (module, exports$1) {
|
|
71661
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71609
71662
|
var tslib_1 = require$$0;
|
|
71610
71663
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71611
71664
|
function default_1(fork) {
|
|
@@ -71641,8 +71694,8 @@ function requireShared () {
|
|
|
71641
71694
|
isPrimitive: isPrimitive,
|
|
71642
71695
|
};
|
|
71643
71696
|
}
|
|
71644
|
-
exports.default = default_1;
|
|
71645
|
-
module.exports = exports["default"];
|
|
71697
|
+
exports$1.default = default_1;
|
|
71698
|
+
module.exports = exports$1["default"];
|
|
71646
71699
|
} (shared, shared.exports));
|
|
71647
71700
|
return shared.exports;
|
|
71648
71701
|
}
|
|
@@ -71652,8 +71705,8 @@ var hasRequiredCore;
|
|
|
71652
71705
|
function requireCore () {
|
|
71653
71706
|
if (hasRequiredCore) return core.exports;
|
|
71654
71707
|
hasRequiredCore = 1;
|
|
71655
|
-
(function (module, exports) {
|
|
71656
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71708
|
+
(function (module, exports$1) {
|
|
71709
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71657
71710
|
var tslib_1 = require$$0;
|
|
71658
71711
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
71659
71712
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -71928,8 +71981,8 @@ function requireCore () {
|
|
|
71928
71981
|
.field("leading", Boolean, defaults["true"])
|
|
71929
71982
|
.field("trailing", Boolean, defaults["false"]);
|
|
71930
71983
|
}
|
|
71931
|
-
exports.default = default_1;
|
|
71932
|
-
module.exports = exports["default"];
|
|
71984
|
+
exports$1.default = default_1;
|
|
71985
|
+
module.exports = exports$1["default"];
|
|
71933
71986
|
} (core, core.exports));
|
|
71934
71987
|
return core.exports;
|
|
71935
71988
|
}
|
|
@@ -71941,8 +71994,8 @@ var hasRequiredEs6;
|
|
|
71941
71994
|
function requireEs6 () {
|
|
71942
71995
|
if (hasRequiredEs6) return es6.exports;
|
|
71943
71996
|
hasRequiredEs6 = 1;
|
|
71944
|
-
(function (module, exports) {
|
|
71945
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71997
|
+
(function (module, exports$1) {
|
|
71998
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
71946
71999
|
var tslib_1 = require$$0;
|
|
71947
72000
|
var core_1 = tslib_1.__importDefault(requireCore());
|
|
71948
72001
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72117,8 +72170,8 @@ function requireEs6 () {
|
|
|
72117
72170
|
.field("value", { "cooked": String, "raw": String })
|
|
72118
72171
|
.field("tail", Boolean);
|
|
72119
72172
|
}
|
|
72120
|
-
exports.default = default_1;
|
|
72121
|
-
module.exports = exports["default"];
|
|
72173
|
+
exports$1.default = default_1;
|
|
72174
|
+
module.exports = exports$1["default"];
|
|
72122
72175
|
} (es6, es6.exports));
|
|
72123
72176
|
return es6.exports;
|
|
72124
72177
|
}
|
|
@@ -72130,8 +72183,8 @@ var hasRequiredEs7;
|
|
|
72130
72183
|
function requireEs7 () {
|
|
72131
72184
|
if (hasRequiredEs7) return es7.exports;
|
|
72132
72185
|
hasRequiredEs7 = 1;
|
|
72133
|
-
(function (module, exports) {
|
|
72134
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72186
|
+
(function (module, exports$1) {
|
|
72187
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72135
72188
|
var tslib_1 = require$$0;
|
|
72136
72189
|
var es6_1 = tslib_1.__importDefault(requireEs6());
|
|
72137
72190
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72162,8 +72215,8 @@ function requireEs7 () {
|
|
|
72162
72215
|
.field("argument", or(def("Expression"), null))
|
|
72163
72216
|
.field("all", Boolean, defaults["false"]);
|
|
72164
72217
|
}
|
|
72165
|
-
exports.default = default_1;
|
|
72166
|
-
module.exports = exports["default"];
|
|
72218
|
+
exports$1.default = default_1;
|
|
72219
|
+
module.exports = exports$1["default"];
|
|
72167
72220
|
} (es7, es7.exports));
|
|
72168
72221
|
return es7.exports;
|
|
72169
72222
|
}
|
|
@@ -72175,8 +72228,8 @@ var hasRequiredEs2020;
|
|
|
72175
72228
|
function requireEs2020 () {
|
|
72176
72229
|
if (hasRequiredEs2020) return es2020.exports;
|
|
72177
72230
|
hasRequiredEs2020 = 1;
|
|
72178
|
-
(function (module, exports) {
|
|
72179
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72231
|
+
(function (module, exports$1) {
|
|
72232
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72180
72233
|
var tslib_1 = require$$0;
|
|
72181
72234
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72182
72235
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72189,8 +72242,8 @@ function requireEs2020 () {
|
|
|
72189
72242
|
.build("source")
|
|
72190
72243
|
.field("source", def("Expression"));
|
|
72191
72244
|
}
|
|
72192
|
-
exports.default = default_1;
|
|
72193
|
-
module.exports = exports["default"];
|
|
72245
|
+
exports$1.default = default_1;
|
|
72246
|
+
module.exports = exports$1["default"];
|
|
72194
72247
|
} (es2020, es2020.exports));
|
|
72195
72248
|
return es2020.exports;
|
|
72196
72249
|
}
|
|
@@ -72202,8 +72255,8 @@ var hasRequiredJsx;
|
|
|
72202
72255
|
function requireJsx () {
|
|
72203
72256
|
if (hasRequiredJsx) return jsx.exports;
|
|
72204
72257
|
hasRequiredJsx = 1;
|
|
72205
|
-
(function (module, exports) {
|
|
72206
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72258
|
+
(function (module, exports$1) {
|
|
72259
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72207
72260
|
var tslib_1 = require$$0;
|
|
72208
72261
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72209
72262
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72296,8 +72349,8 @@ function requireJsx () {
|
|
|
72296
72349
|
.build("expression")
|
|
72297
72350
|
.field("expression", def("Expression"));
|
|
72298
72351
|
}
|
|
72299
|
-
exports.default = default_1;
|
|
72300
|
-
module.exports = exports["default"];
|
|
72352
|
+
exports$1.default = default_1;
|
|
72353
|
+
module.exports = exports$1["default"];
|
|
72301
72354
|
} (jsx, jsx.exports));
|
|
72302
72355
|
return jsx.exports;
|
|
72303
72356
|
}
|
|
@@ -72311,8 +72364,8 @@ var hasRequiredTypeAnnotations;
|
|
|
72311
72364
|
function requireTypeAnnotations () {
|
|
72312
72365
|
if (hasRequiredTypeAnnotations) return typeAnnotations.exports;
|
|
72313
72366
|
hasRequiredTypeAnnotations = 1;
|
|
72314
|
-
(function (module, exports) {
|
|
72315
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72367
|
+
(function (module, exports$1) {
|
|
72368
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72316
72369
|
var tslib_1 = require$$0;
|
|
72317
72370
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
72318
72371
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -72344,8 +72397,8 @@ function requireTypeAnnotations () {
|
|
|
72344
72397
|
.field("implements", or([def("ClassImplements")], [def("TSExpressionWithTypeArguments")]), defaults.emptyArray);
|
|
72345
72398
|
});
|
|
72346
72399
|
}
|
|
72347
|
-
exports.default = default_1;
|
|
72348
|
-
module.exports = exports["default"];
|
|
72400
|
+
exports$1.default = default_1;
|
|
72401
|
+
module.exports = exports$1["default"];
|
|
72349
72402
|
} (typeAnnotations, typeAnnotations.exports));
|
|
72350
72403
|
return typeAnnotations.exports;
|
|
72351
72404
|
}
|
|
@@ -72355,8 +72408,8 @@ var hasRequiredFlow;
|
|
|
72355
72408
|
function requireFlow () {
|
|
72356
72409
|
if (hasRequiredFlow) return flow.exports;
|
|
72357
72410
|
hasRequiredFlow = 1;
|
|
72358
|
-
(function (module, exports) {
|
|
72359
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72411
|
+
(function (module, exports$1) {
|
|
72412
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72360
72413
|
var tslib_1 = require$$0;
|
|
72361
72414
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72362
72415
|
var type_annotations_1 = tslib_1.__importDefault(requireTypeAnnotations());
|
|
@@ -72641,8 +72694,8 @@ function requireFlow () {
|
|
|
72641
72694
|
def("NewExpression")
|
|
72642
72695
|
.field("typeArguments", or(null, def("TypeParameterInstantiation")), defaults["null"]);
|
|
72643
72696
|
}
|
|
72644
|
-
exports.default = default_1;
|
|
72645
|
-
module.exports = exports["default"];
|
|
72697
|
+
exports$1.default = default_1;
|
|
72698
|
+
module.exports = exports$1["default"];
|
|
72646
72699
|
} (flow, flow.exports));
|
|
72647
72700
|
return flow.exports;
|
|
72648
72701
|
}
|
|
@@ -72654,8 +72707,8 @@ var hasRequiredEsprima;
|
|
|
72654
72707
|
function requireEsprima () {
|
|
72655
72708
|
if (hasRequiredEsprima) return esprima.exports;
|
|
72656
72709
|
hasRequiredEsprima = 1;
|
|
72657
|
-
(function (module, exports) {
|
|
72658
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72710
|
+
(function (module, exports$1) {
|
|
72711
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72659
72712
|
var tslib_1 = require$$0;
|
|
72660
72713
|
var es7_1 = tslib_1.__importDefault(requireEs7());
|
|
72661
72714
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
@@ -72698,8 +72751,8 @@ function requireEsprima () {
|
|
|
72698
72751
|
.bases("Comment")
|
|
72699
72752
|
.build("value", "leading", "trailing");
|
|
72700
72753
|
}
|
|
72701
|
-
exports.default = default_1;
|
|
72702
|
-
module.exports = exports["default"];
|
|
72754
|
+
exports$1.default = default_1;
|
|
72755
|
+
module.exports = exports$1["default"];
|
|
72703
72756
|
} (esprima, esprima.exports));
|
|
72704
72757
|
return esprima.exports;
|
|
72705
72758
|
}
|
|
@@ -72713,8 +72766,8 @@ var hasRequiredBabelCore;
|
|
|
72713
72766
|
function requireBabelCore () {
|
|
72714
72767
|
if (hasRequiredBabelCore) return babelCore.exports;
|
|
72715
72768
|
hasRequiredBabelCore = 1;
|
|
72716
|
-
(function (module, exports) {
|
|
72717
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72769
|
+
(function (module, exports$1) {
|
|
72770
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72718
72771
|
var tslib_1 = require$$0;
|
|
72719
72772
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
72720
72773
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -72959,8 +73012,8 @@ function requireBabelCore () {
|
|
|
72959
73012
|
.bases("Expression")
|
|
72960
73013
|
.build();
|
|
72961
73014
|
}
|
|
72962
|
-
exports.default = default_1;
|
|
72963
|
-
module.exports = exports["default"];
|
|
73015
|
+
exports$1.default = default_1;
|
|
73016
|
+
module.exports = exports$1["default"];
|
|
72964
73017
|
} (babelCore, babelCore.exports));
|
|
72965
73018
|
return babelCore.exports;
|
|
72966
73019
|
}
|
|
@@ -72970,8 +73023,8 @@ var hasRequiredBabel;
|
|
|
72970
73023
|
function requireBabel () {
|
|
72971
73024
|
if (hasRequiredBabel) return babel.exports;
|
|
72972
73025
|
hasRequiredBabel = 1;
|
|
72973
|
-
(function (module, exports) {
|
|
72974
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73026
|
+
(function (module, exports$1) {
|
|
73027
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72975
73028
|
var tslib_1 = require$$0;
|
|
72976
73029
|
var babel_core_1 = tslib_1.__importDefault(requireBabelCore());
|
|
72977
73030
|
var flow_1 = tslib_1.__importDefault(requireFlow());
|
|
@@ -72979,8 +73032,8 @@ function requireBabel () {
|
|
|
72979
73032
|
fork.use(babel_core_1.default);
|
|
72980
73033
|
fork.use(flow_1.default);
|
|
72981
73034
|
}
|
|
72982
|
-
exports.default = default_1;
|
|
72983
|
-
module.exports = exports["default"];
|
|
73035
|
+
exports$1.default = default_1;
|
|
73036
|
+
module.exports = exports$1["default"];
|
|
72984
73037
|
} (babel, babel.exports));
|
|
72985
73038
|
return babel.exports;
|
|
72986
73039
|
}
|
|
@@ -72992,8 +73045,8 @@ var hasRequiredTypescript;
|
|
|
72992
73045
|
function requireTypescript () {
|
|
72993
73046
|
if (hasRequiredTypescript) return typescript.exports;
|
|
72994
73047
|
hasRequiredTypescript = 1;
|
|
72995
|
-
(function (module, exports) {
|
|
72996
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73048
|
+
(function (module, exports$1) {
|
|
73049
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
72997
73050
|
var tslib_1 = require$$0;
|
|
72998
73051
|
var babel_core_1 = tslib_1.__importDefault(requireBabelCore());
|
|
72999
73052
|
var type_annotations_1 = tslib_1.__importDefault(requireTypeAnnotations());
|
|
@@ -73318,8 +73371,8 @@ function requireTypescript () {
|
|
|
73318
73371
|
.field("body", [or(def("MethodDefinition"), def("VariableDeclarator"), def("ClassPropertyDefinition"), def("ClassProperty"), def("ClassPrivateProperty"), def("ClassMethod"), def("ClassPrivateMethod"),
|
|
73319
73372
|
def("TSDeclareMethod"), TSTypeMember)]);
|
|
73320
73373
|
}
|
|
73321
|
-
exports.default = default_1;
|
|
73322
|
-
module.exports = exports["default"];
|
|
73374
|
+
exports$1.default = default_1;
|
|
73375
|
+
module.exports = exports$1["default"];
|
|
73323
73376
|
} (typescript, typescript.exports));
|
|
73324
73377
|
return typescript.exports;
|
|
73325
73378
|
}
|
|
@@ -73331,8 +73384,8 @@ var hasRequiredEsProposals;
|
|
|
73331
73384
|
function requireEsProposals () {
|
|
73332
73385
|
if (hasRequiredEsProposals) return esProposals.exports;
|
|
73333
73386
|
hasRequiredEsProposals = 1;
|
|
73334
|
-
(function (module, exports) {
|
|
73335
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73387
|
+
(function (module, exports$1) {
|
|
73388
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73336
73389
|
var tslib_1 = require$$0;
|
|
73337
73390
|
var types_1 = tslib_1.__importDefault(requireTypes$1());
|
|
73338
73391
|
var shared_1 = tslib_1.__importDefault(requireShared());
|
|
@@ -73357,8 +73410,8 @@ function requireEsProposals () {
|
|
|
73357
73410
|
def("LogicalExpression")
|
|
73358
73411
|
.field("operator", LogicalOperator);
|
|
73359
73412
|
}
|
|
73360
|
-
exports.default = default_1;
|
|
73361
|
-
module.exports = exports["default"];
|
|
73413
|
+
exports$1.default = default_1;
|
|
73414
|
+
module.exports = exports$1["default"];
|
|
73362
73415
|
} (esProposals, esProposals.exports));
|
|
73363
73416
|
return esProposals.exports;
|
|
73364
73417
|
}
|
|
@@ -73370,11 +73423,11 @@ var hasRequiredNamedTypes;
|
|
|
73370
73423
|
function requireNamedTypes () {
|
|
73371
73424
|
if (hasRequiredNamedTypes) return namedTypes;
|
|
73372
73425
|
hasRequiredNamedTypes = 1;
|
|
73373
|
-
(function (exports) {
|
|
73374
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73375
|
-
exports.namedTypes = void 0;
|
|
73426
|
+
(function (exports$1) {
|
|
73427
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73428
|
+
exports$1.namedTypes = void 0;
|
|
73376
73429
|
(function (namedTypes) {
|
|
73377
|
-
})(exports.namedTypes || (exports.namedTypes = {}));
|
|
73430
|
+
})(exports$1.namedTypes || (exports$1.namedTypes = {}));
|
|
73378
73431
|
} (namedTypes));
|
|
73379
73432
|
return namedTypes;
|
|
73380
73433
|
}
|
|
@@ -73384,9 +73437,9 @@ var hasRequiredMain;
|
|
|
73384
73437
|
function requireMain () {
|
|
73385
73438
|
if (hasRequiredMain) return main;
|
|
73386
73439
|
hasRequiredMain = 1;
|
|
73387
|
-
(function (exports) {
|
|
73388
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73389
|
-
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;
|
|
73390
73443
|
var tslib_1 = require$$0;
|
|
73391
73444
|
var fork_1 = tslib_1.__importDefault(requireFork());
|
|
73392
73445
|
var core_1 = tslib_1.__importDefault(requireCore());
|
|
@@ -73400,7 +73453,7 @@ function requireMain () {
|
|
|
73400
73453
|
var typescript_1 = tslib_1.__importDefault(requireTypescript());
|
|
73401
73454
|
var es_proposals_1 = tslib_1.__importDefault(requireEsProposals());
|
|
73402
73455
|
var namedTypes_1 = requireNamedTypes();
|
|
73403
|
-
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; } });
|
|
73404
73457
|
var _a = fork_1.default([
|
|
73405
73458
|
core_1.default,
|
|
73406
73459
|
es6_1.default,
|
|
@@ -73413,23 +73466,23 @@ function requireMain () {
|
|
|
73413
73466
|
typescript_1.default,
|
|
73414
73467
|
es_proposals_1.default,
|
|
73415
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;
|
|
73416
|
-
exports.astNodesAreEquivalent = astNodesAreEquivalent;
|
|
73417
|
-
exports.builders = builders;
|
|
73418
|
-
exports.builtInTypes = builtInTypes;
|
|
73419
|
-
exports.defineMethod = defineMethod;
|
|
73420
|
-
exports.eachField = eachField;
|
|
73421
|
-
exports.finalize = finalize;
|
|
73422
|
-
exports.getBuilderName = getBuilderName;
|
|
73423
|
-
exports.getFieldNames = getFieldNames;
|
|
73424
|
-
exports.getFieldValue = getFieldValue;
|
|
73425
|
-
exports.getSupertypeNames = getSupertypeNames;
|
|
73426
|
-
exports.NodePath = NodePath;
|
|
73427
|
-
exports.Path = Path;
|
|
73428
|
-
exports.PathVisitor = PathVisitor;
|
|
73429
|
-
exports.someField = someField;
|
|
73430
|
-
exports.Type = Type;
|
|
73431
|
-
exports.use = use;
|
|
73432
|
-
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;
|
|
73433
73486
|
Object.assign(namedTypes_1.namedTypes, n);
|
|
73434
73487
|
} (main));
|
|
73435
73488
|
return main;
|
|
@@ -73683,7 +73736,7 @@ var hasRequiredDist$4;
|
|
|
73683
73736
|
function requireDist$4 () {
|
|
73684
73737
|
if (hasRequiredDist$4) return dist$1;
|
|
73685
73738
|
hasRequiredDist$4 = 1;
|
|
73686
|
-
(function (exports) {
|
|
73739
|
+
(function (exports$1) {
|
|
73687
73740
|
var __createBinding = (dist$1 && dist$1.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
73688
73741
|
if (k2 === undefined) k2 = k;
|
|
73689
73742
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -73695,12 +73748,12 @@ function requireDist$4 () {
|
|
|
73695
73748
|
if (k2 === undefined) k2 = k;
|
|
73696
73749
|
o[k2] = m[k];
|
|
73697
73750
|
}));
|
|
73698
|
-
var __exportStar = (dist$1 && dist$1.__exportStar) || function(m, exports) {
|
|
73699
|
-
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);
|
|
73700
73753
|
};
|
|
73701
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73702
|
-
__exportStar(requireDegenerator(), exports);
|
|
73703
|
-
__exportStar(requireCompile(), exports);
|
|
73754
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
73755
|
+
__exportStar(requireDegenerator(), exports$1);
|
|
73756
|
+
__exportStar(requireCompile(), exports$1);
|
|
73704
73757
|
} (dist$1));
|
|
73705
73758
|
return dist$1;
|
|
73706
73759
|
}
|
|
@@ -74108,28 +74161,28 @@ var hasRequiredIp;
|
|
|
74108
74161
|
function requireIp () {
|
|
74109
74162
|
if (hasRequiredIp) return ip;
|
|
74110
74163
|
hasRequiredIp = 1;
|
|
74111
|
-
(function (exports) {
|
|
74164
|
+
(function (exports$1) {
|
|
74112
74165
|
var __importDefault = (ip && ip.__importDefault) || function (mod) {
|
|
74113
74166
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
74114
74167
|
};
|
|
74115
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74116
|
-
exports.ip = void 0;
|
|
74168
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
74169
|
+
exports$1.ip = void 0;
|
|
74117
74170
|
const os_1 = __importDefault(require$$0$1);
|
|
74118
|
-
exports.ip = {
|
|
74171
|
+
exports$1.ip = {
|
|
74119
74172
|
address() {
|
|
74120
74173
|
const interfaces = os_1.default.networkInterfaces();
|
|
74121
74174
|
const family = normalizeFamily();
|
|
74122
74175
|
const all = Object.values(interfaces).map((addrs = []) => {
|
|
74123
74176
|
const addresses = addrs.filter((details) => {
|
|
74124
74177
|
const detailsFamily = normalizeFamily(details.family);
|
|
74125
|
-
if (detailsFamily !== family || exports.ip.isLoopback(details.address)) {
|
|
74178
|
+
if (detailsFamily !== family || exports$1.ip.isLoopback(details.address)) {
|
|
74126
74179
|
return false;
|
|
74127
74180
|
}
|
|
74128
74181
|
return true;
|
|
74129
74182
|
});
|
|
74130
74183
|
return addresses.length ? addresses[0].address : undefined;
|
|
74131
74184
|
}).filter(Boolean);
|
|
74132
|
-
return !all.length ? exports.ip.loopback(family) : all[0];
|
|
74185
|
+
return !all.length ? exports$1.ip.loopback(family) : all[0];
|
|
74133
74186
|
},
|
|
74134
74187
|
isLoopback(addr) {
|
|
74135
74188
|
return /^(::f{4}:)?127\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})/
|
|
@@ -74334,12 +74387,12 @@ var hasRequiredDist$3;
|
|
|
74334
74387
|
function requireDist$3 () {
|
|
74335
74388
|
if (hasRequiredDist$3) return dist$2;
|
|
74336
74389
|
hasRequiredDist$3 = 1;
|
|
74337
|
-
(function (exports) {
|
|
74390
|
+
(function (exports$1) {
|
|
74338
74391
|
var __importDefault = (dist$2 && dist$2.__importDefault) || function (mod) {
|
|
74339
74392
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
74340
74393
|
};
|
|
74341
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74342
|
-
exports.sandbox = exports.createPacResolver = void 0;
|
|
74394
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
74395
|
+
exports$1.sandbox = exports$1.createPacResolver = void 0;
|
|
74343
74396
|
const degenerator_1 = requireDist$4();
|
|
74344
74397
|
const dateRange_1 = __importDefault(requireDateRange());
|
|
74345
74398
|
const dnsDomainIs_1 = __importDefault(requireDnsDomainIs());
|
|
@@ -74356,7 +74409,7 @@ function requireDist$3 () {
|
|
|
74356
74409
|
function createPacResolver(qjs, _str, _opts = {}) {
|
|
74357
74410
|
const str = Buffer.isBuffer(_str) ? _str.toString('utf8') : _str;
|
|
74358
74411
|
const context = {
|
|
74359
|
-
...exports.sandbox,
|
|
74412
|
+
...exports$1.sandbox,
|
|
74360
74413
|
..._opts.sandbox,
|
|
74361
74414
|
};
|
|
74362
74415
|
const names = Object.keys(context).filter((k) => isAsyncFunction(context[k]));
|
|
@@ -74381,8 +74434,8 @@ function requireDist$3 () {
|
|
|
74381
74434
|
});
|
|
74382
74435
|
return FindProxyForURL;
|
|
74383
74436
|
}
|
|
74384
|
-
exports.createPacResolver = createPacResolver;
|
|
74385
|
-
exports.sandbox = Object.freeze({
|
|
74437
|
+
exports$1.createPacResolver = createPacResolver;
|
|
74438
|
+
exports$1.sandbox = Object.freeze({
|
|
74386
74439
|
alert: (message = '') => console.log('%s', message),
|
|
74387
74440
|
dateRange: dateRange_1.default,
|
|
74388
74441
|
dnsDomainIs: dnsDomainIs_1.default,
|
|
@@ -74435,7 +74488,7 @@ function requireEsmHelpers () {
|
|
|
74435
74488
|
return esmHelpers;
|
|
74436
74489
|
}
|
|
74437
74490
|
|
|
74438
|
-
var module = {};
|
|
74491
|
+
var module$1 = {};
|
|
74439
74492
|
|
|
74440
74493
|
var debug = {};
|
|
74441
74494
|
|
|
@@ -74444,11 +74497,11 @@ var hasRequiredDebug;
|
|
|
74444
74497
|
function requireDebug () {
|
|
74445
74498
|
if (hasRequiredDebug) return debug;
|
|
74446
74499
|
hasRequiredDebug = 1;
|
|
74447
|
-
(function (exports) {
|
|
74448
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
74449
|
-
exports.debugLog = exports.QTS_DEBUG = void 0;
|
|
74450
|
-
exports.QTS_DEBUG = Boolean(typeof process === "object" && process.env.QTS_DEBUG);
|
|
74451
|
-
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) : () => { };
|
|
74452
74505
|
} (debug));
|
|
74453
74506
|
return debug;
|
|
74454
74507
|
}
|
|
@@ -75576,10 +75629,10 @@ function requireRuntime () {
|
|
|
75576
75629
|
var hasRequiredModule;
|
|
75577
75630
|
|
|
75578
75631
|
function requireModule () {
|
|
75579
|
-
if (hasRequiredModule) return module;
|
|
75632
|
+
if (hasRequiredModule) return module$1;
|
|
75580
75633
|
hasRequiredModule = 1;
|
|
75581
|
-
Object.defineProperty(module, "__esModule", { value: true });
|
|
75582
|
-
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;
|
|
75583
75636
|
const debug_1 = /*@__PURE__*/ requireDebug();
|
|
75584
75637
|
const errors_1 = /*@__PURE__*/ requireErrors();
|
|
75585
75638
|
const lifetime_1 = /*@__PURE__*/ requireLifetime();
|
|
@@ -75716,7 +75769,7 @@ function requireModule () {
|
|
|
75716
75769
|
return value;
|
|
75717
75770
|
}
|
|
75718
75771
|
}
|
|
75719
|
-
module.QuickJSModuleCallbacks = QuickJSModuleCallbacks;
|
|
75772
|
+
module$1.QuickJSModuleCallbacks = QuickJSModuleCallbacks;
|
|
75720
75773
|
function applyBaseRuntimeOptions(runtime, options) {
|
|
75721
75774
|
if (options.interruptHandler) {
|
|
75722
75775
|
runtime.setInterruptHandler(options.interruptHandler);
|
|
@@ -75728,7 +75781,7 @@ function requireModule () {
|
|
|
75728
75781
|
runtime.setMemoryLimit(options.memoryLimitBytes);
|
|
75729
75782
|
}
|
|
75730
75783
|
}
|
|
75731
|
-
module.applyBaseRuntimeOptions = applyBaseRuntimeOptions;
|
|
75784
|
+
module$1.applyBaseRuntimeOptions = applyBaseRuntimeOptions;
|
|
75732
75785
|
function applyModuleEvalRuntimeOptions(runtime, options) {
|
|
75733
75786
|
if (options.moduleLoader) {
|
|
75734
75787
|
runtime.setModuleLoader(options.moduleLoader);
|
|
@@ -75743,7 +75796,7 @@ function requireModule () {
|
|
|
75743
75796
|
runtime.setMaxStackSize(options.maxStackSizeBytes);
|
|
75744
75797
|
}
|
|
75745
75798
|
}
|
|
75746
|
-
module.applyModuleEvalRuntimeOptions = applyModuleEvalRuntimeOptions;
|
|
75799
|
+
module$1.applyModuleEvalRuntimeOptions = applyModuleEvalRuntimeOptions;
|
|
75747
75800
|
class QuickJSWASMModule {
|
|
75748
75801
|
constructor(module, ffi) {
|
|
75749
75802
|
this.module = module;
|
|
@@ -75796,8 +75849,8 @@ function requireModule () {
|
|
|
75796
75849
|
return this.ffi;
|
|
75797
75850
|
}
|
|
75798
75851
|
}
|
|
75799
|
-
module.QuickJSWASMModule = QuickJSWASMModule;
|
|
75800
|
-
return module;
|
|
75852
|
+
module$1.QuickJSWASMModule = QuickJSWASMModule;
|
|
75853
|
+
return module$1;
|
|
75801
75854
|
}
|
|
75802
75855
|
|
|
75803
75856
|
var moduleAsyncify = {};
|
|
@@ -76036,7 +76089,7 @@ var hasRequiredEmscriptenModule_WASM_RELEASE_SYNC;
|
|
|
76036
76089
|
function requireEmscriptenModule_WASM_RELEASE_SYNC () {
|
|
76037
76090
|
if (hasRequiredEmscriptenModule_WASM_RELEASE_SYNC) return emscriptenModule_WASM_RELEASE_SYNC.exports;
|
|
76038
76091
|
hasRequiredEmscriptenModule_WASM_RELEASE_SYNC = 1;
|
|
76039
|
-
(function (module, exports) {
|
|
76092
|
+
(function (module, exports$1) {
|
|
76040
76093
|
var QuickJSRaw = (() => {
|
|
76041
76094
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
76042
76095
|
if (typeof __filename !== 'undefined')
|
|
@@ -76426,7 +76479,7 @@ var hasRequiredVariants;
|
|
|
76426
76479
|
function requireVariants () {
|
|
76427
76480
|
if (hasRequiredVariants) return variants;
|
|
76428
76481
|
hasRequiredVariants = 1;
|
|
76429
|
-
(function (exports) {
|
|
76482
|
+
(function (exports$1) {
|
|
76430
76483
|
var __createBinding = (variants && variants.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76431
76484
|
if (k2 === undefined) k2 = k;
|
|
76432
76485
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76450,11 +76503,11 @@ function requireVariants () {
|
|
|
76450
76503
|
__setModuleDefault(result, mod);
|
|
76451
76504
|
return result;
|
|
76452
76505
|
};
|
|
76453
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76454
|
-
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;
|
|
76455
76508
|
const esmHelpers_1 = /*@__PURE__*/ requireEsmHelpers();
|
|
76456
76509
|
async function newQuickJSWASMModule(
|
|
76457
|
-
variant = exports.RELEASE_SYNC) {
|
|
76510
|
+
variant = exports$1.RELEASE_SYNC) {
|
|
76458
76511
|
const [wasmModuleLoader, QuickJSFFI, { QuickJSWASMModule }] = await Promise.all([
|
|
76459
76512
|
variant.importModuleLoader(),
|
|
76460
76513
|
variant.importFFI(),
|
|
@@ -76465,9 +76518,9 @@ function requireVariants () {
|
|
|
76465
76518
|
const ffi = new QuickJSFFI(wasmModule);
|
|
76466
76519
|
return new QuickJSWASMModule(wasmModule, ffi);
|
|
76467
76520
|
}
|
|
76468
|
-
exports.newQuickJSWASMModule = newQuickJSWASMModule;
|
|
76521
|
+
exports$1.newQuickJSWASMModule = newQuickJSWASMModule;
|
|
76469
76522
|
async function newQuickJSAsyncWASMModule(
|
|
76470
|
-
variant = exports.RELEASE_ASYNC) {
|
|
76523
|
+
variant = exports$1.RELEASE_ASYNC) {
|
|
76471
76524
|
const [wasmModuleLoader, QuickJSAsyncFFI, { QuickJSAsyncWASMModule }] = await Promise.all([
|
|
76472
76525
|
variant.importModuleLoader(),
|
|
76473
76526
|
variant.importFFI(),
|
|
@@ -76478,15 +76531,15 @@ function requireVariants () {
|
|
|
76478
76531
|
const ffi = new QuickJSAsyncFFI(wasmModule);
|
|
76479
76532
|
return new QuickJSAsyncWASMModule(wasmModule, ffi);
|
|
76480
76533
|
}
|
|
76481
|
-
exports.newQuickJSAsyncWASMModule = newQuickJSAsyncWASMModule;
|
|
76534
|
+
exports$1.newQuickJSAsyncWASMModule = newQuickJSAsyncWASMModule;
|
|
76482
76535
|
function memoizePromiseFactory(fn) {
|
|
76483
76536
|
let promise;
|
|
76484
76537
|
return () => {
|
|
76485
76538
|
return (promise ?? (promise = fn()));
|
|
76486
76539
|
};
|
|
76487
76540
|
}
|
|
76488
|
-
exports.memoizePromiseFactory = memoizePromiseFactory;
|
|
76489
|
-
exports.DEBUG_SYNC = {
|
|
76541
|
+
exports$1.memoizePromiseFactory = memoizePromiseFactory;
|
|
76542
|
+
exports$1.DEBUG_SYNC = {
|
|
76490
76543
|
type: "sync",
|
|
76491
76544
|
async importFFI() {
|
|
76492
76545
|
throw new Error("not implemented");
|
|
@@ -76495,7 +76548,7 @@ function requireVariants () {
|
|
|
76495
76548
|
throw new Error("not implemented");
|
|
76496
76549
|
},
|
|
76497
76550
|
};
|
|
76498
|
-
exports.RELEASE_SYNC = {
|
|
76551
|
+
exports$1.RELEASE_SYNC = {
|
|
76499
76552
|
type: "sync",
|
|
76500
76553
|
async importFFI() {
|
|
76501
76554
|
const mod = await Promise.resolve().then(() => __importStar(/*@__PURE__*/ requireFfi_WASM_RELEASE_SYNC()));
|
|
@@ -76506,7 +76559,7 @@ function requireVariants () {
|
|
|
76506
76559
|
return (0, esmHelpers_1.unwrapJavascript)(mod);
|
|
76507
76560
|
},
|
|
76508
76561
|
};
|
|
76509
|
-
exports.DEBUG_ASYNC = {
|
|
76562
|
+
exports$1.DEBUG_ASYNC = {
|
|
76510
76563
|
type: "async",
|
|
76511
76564
|
async importFFI() {
|
|
76512
76565
|
throw new Error("not implemented");
|
|
@@ -76515,7 +76568,7 @@ function requireVariants () {
|
|
|
76515
76568
|
throw new Error("not implemented");
|
|
76516
76569
|
},
|
|
76517
76570
|
};
|
|
76518
|
-
exports.RELEASE_ASYNC = {
|
|
76571
|
+
exports$1.RELEASE_ASYNC = {
|
|
76519
76572
|
type: "async",
|
|
76520
76573
|
async importFFI() {
|
|
76521
76574
|
throw new Error("not implemented");
|
|
@@ -76625,7 +76678,7 @@ var hasRequiredDist$2;
|
|
|
76625
76678
|
function requireDist$2 () {
|
|
76626
76679
|
if (hasRequiredDist$2) return dist;
|
|
76627
76680
|
hasRequiredDist$2 = 1;
|
|
76628
|
-
(function (exports) {
|
|
76681
|
+
(function (exports$1) {
|
|
76629
76682
|
var __createBinding = (dist && dist.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76630
76683
|
if (k2 === undefined) k2 = k;
|
|
76631
76684
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76642,8 +76695,8 @@ function requireDist$2 () {
|
|
|
76642
76695
|
}) : function(o, v) {
|
|
76643
76696
|
o["default"] = v;
|
|
76644
76697
|
});
|
|
76645
|
-
var __exportStar = (dist && dist.__exportStar) || function(m, exports) {
|
|
76646
|
-
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);
|
|
76647
76700
|
};
|
|
76648
76701
|
var __importStar = (dist && dist.__importStar) || function (mod) {
|
|
76649
76702
|
if (mod && mod.__esModule) return mod;
|
|
@@ -76652,20 +76705,20 @@ function requireDist$2 () {
|
|
|
76652
76705
|
__setModuleDefault(result, mod);
|
|
76653
76706
|
return result;
|
|
76654
76707
|
};
|
|
76655
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76656
|
-
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;
|
|
76657
76710
|
const variants_1 = /*@__PURE__*/ requireVariants();
|
|
76658
|
-
Object.defineProperty(exports, "newQuickJSWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSWASMModule; } });
|
|
76659
|
-
Object.defineProperty(exports, "newQuickJSAsyncWASMModule", { enumerable: true, get: function () { return variants_1.newQuickJSAsyncWASMModule; } });
|
|
76660
|
-
Object.defineProperty(exports, "DEBUG_ASYNC", { enumerable: true, get: function () { return variants_1.DEBUG_ASYNC; } });
|
|
76661
|
-
Object.defineProperty(exports, "DEBUG_SYNC", { enumerable: true, get: function () { return variants_1.DEBUG_SYNC; } });
|
|
76662
|
-
Object.defineProperty(exports, "RELEASE_ASYNC", { enumerable: true, get: function () { return variants_1.RELEASE_ASYNC; } });
|
|
76663
|
-
Object.defineProperty(exports, "RELEASE_SYNC", { enumerable: true, get: function () { return variants_1.RELEASE_SYNC; } });
|
|
76664
|
-
__exportStar(/*@__PURE__*/ requireVmInterface(), exports);
|
|
76665
|
-
__exportStar(/*@__PURE__*/ requireLifetime(), exports);
|
|
76666
|
-
exports.errors = __importStar(/*@__PURE__*/ requireErrors());
|
|
76667
|
-
__exportStar(/*@__PURE__*/ requireDeferredPromise(), exports);
|
|
76668
|
-
__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);
|
|
76669
76722
|
let singleton = undefined;
|
|
76670
76723
|
let singletonPromise = undefined;
|
|
76671
76724
|
async function getQuickJS() {
|
|
@@ -76675,31 +76728,31 @@ function requireDist$2 () {
|
|
|
76675
76728
|
}));
|
|
76676
76729
|
return await singletonPromise;
|
|
76677
76730
|
}
|
|
76678
|
-
exports.getQuickJS = getQuickJS;
|
|
76731
|
+
exports$1.getQuickJS = getQuickJS;
|
|
76679
76732
|
function getQuickJSSync() {
|
|
76680
76733
|
if (!singleton) {
|
|
76681
76734
|
throw new Error("QuickJS not initialized. Await getQuickJS() at least once.");
|
|
76682
76735
|
}
|
|
76683
76736
|
return singleton;
|
|
76684
76737
|
}
|
|
76685
|
-
exports.getQuickJSSync = getQuickJSSync;
|
|
76738
|
+
exports$1.getQuickJSSync = getQuickJSSync;
|
|
76686
76739
|
async function newAsyncRuntime(options) {
|
|
76687
76740
|
const module = await (0, variants_1.newQuickJSAsyncWASMModule)();
|
|
76688
76741
|
return module.newRuntime(options);
|
|
76689
76742
|
}
|
|
76690
|
-
exports.newAsyncRuntime = newAsyncRuntime;
|
|
76743
|
+
exports$1.newAsyncRuntime = newAsyncRuntime;
|
|
76691
76744
|
async function newAsyncContext(options) {
|
|
76692
76745
|
const module = await (0, variants_1.newQuickJSAsyncWASMModule)();
|
|
76693
76746
|
return module.newContext(options);
|
|
76694
76747
|
}
|
|
76695
|
-
exports.newAsyncContext = newAsyncContext;
|
|
76748
|
+
exports$1.newAsyncContext = newAsyncContext;
|
|
76696
76749
|
function shouldInterruptAfterDeadline(deadline) {
|
|
76697
76750
|
const deadlineAsNumber = typeof deadline === "number" ? deadline : deadline.getTime();
|
|
76698
76751
|
return function () {
|
|
76699
76752
|
return Date.now() > deadlineAsNumber;
|
|
76700
76753
|
};
|
|
76701
76754
|
}
|
|
76702
|
-
exports.shouldInterruptAfterDeadline = shouldInterruptAfterDeadline;
|
|
76755
|
+
exports$1.shouldInterruptAfterDeadline = shouldInterruptAfterDeadline;
|
|
76703
76756
|
} (dist));
|
|
76704
76757
|
return dist;
|
|
76705
76758
|
}
|
|
@@ -76911,7 +76964,7 @@ var hasRequiredDist;
|
|
|
76911
76964
|
function requireDist () {
|
|
76912
76965
|
if (hasRequiredDist) return dist$b;
|
|
76913
76966
|
hasRequiredDist = 1;
|
|
76914
|
-
(function (exports) {
|
|
76967
|
+
(function (exports$1) {
|
|
76915
76968
|
var __createBinding = (dist$b && dist$b.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
76916
76969
|
if (k2 === undefined) k2 = k;
|
|
76917
76970
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -76938,8 +76991,8 @@ function requireDist () {
|
|
|
76938
76991
|
var __importDefault = (dist$b && dist$b.__importDefault) || function (mod) {
|
|
76939
76992
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
76940
76993
|
};
|
|
76941
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76942
|
-
exports.ProxyAgent = exports.proxies = void 0;
|
|
76994
|
+
Object.defineProperty(exports$1, "__esModule", { value: true });
|
|
76995
|
+
exports$1.ProxyAgent = exports$1.proxies = void 0;
|
|
76943
76996
|
const http = __importStar(require$$0$3);
|
|
76944
76997
|
const https = __importStar(require$$1$1);
|
|
76945
76998
|
const url_1 = require$$5;
|
|
@@ -76954,7 +77007,7 @@ function requireDist () {
|
|
|
76954
77007
|
socks: async () => (await Promise.resolve().then(() => __importStar(requireDist$8()))).SocksProxyAgent,
|
|
76955
77008
|
pac: async () => (await Promise.resolve().then(() => __importStar(requireDist$1()))).PacProxyAgent,
|
|
76956
77009
|
};
|
|
76957
|
-
exports.proxies = {
|
|
77010
|
+
exports$1.proxies = {
|
|
76958
77011
|
http: [wellKnownAgents.http, wellKnownAgents.https],
|
|
76959
77012
|
https: [wellKnownAgents.http, wellKnownAgents.https],
|
|
76960
77013
|
socks: [wellKnownAgents.socks, wellKnownAgents.socks],
|
|
@@ -76969,7 +77022,7 @@ function requireDist () {
|
|
|
76969
77022
|
'pac+https': [wellKnownAgents.pac, wellKnownAgents.pac],
|
|
76970
77023
|
};
|
|
76971
77024
|
function isValidProtocol(v) {
|
|
76972
|
-
return Object.keys(exports.proxies).includes(v);
|
|
77025
|
+
return Object.keys(exports$1.proxies).includes(v);
|
|
76973
77026
|
}
|
|
76974
77027
|
class ProxyAgent extends agent_base_1.Agent {
|
|
76975
77028
|
constructor(opts) {
|
|
@@ -77012,7 +77065,7 @@ function requireDist () {
|
|
|
77012
77065
|
if (!isValidProtocol(proxyProto)) {
|
|
77013
77066
|
throw new Error(`Unsupported protocol for proxy URL: ${proxy}`);
|
|
77014
77067
|
}
|
|
77015
|
-
const ctor = await exports.proxies[proxyProto][secureEndpoint || isWebSocket ? 1 : 0]();
|
|
77068
|
+
const ctor = await exports$1.proxies[proxyProto][secureEndpoint || isWebSocket ? 1 : 0]();
|
|
77016
77069
|
agent = new ctor(proxy, this.connectOpts);
|
|
77017
77070
|
this.cache.set(cacheKey, agent);
|
|
77018
77071
|
}
|
|
@@ -77028,7 +77081,7 @@ function requireDist () {
|
|
|
77028
77081
|
super.destroy();
|
|
77029
77082
|
}
|
|
77030
77083
|
}
|
|
77031
|
-
exports.ProxyAgent = ProxyAgent;
|
|
77084
|
+
exports$1.ProxyAgent = ProxyAgent;
|
|
77032
77085
|
} (dist$b));
|
|
77033
77086
|
return dist$b;
|
|
77034
77087
|
}
|
|
@@ -78442,7 +78495,7 @@ var hasRequiredNodeProgress;
|
|
|
78442
78495
|
function requireNodeProgress () {
|
|
78443
78496
|
if (hasRequiredNodeProgress) return nodeProgress.exports;
|
|
78444
78497
|
hasRequiredNodeProgress = 1;
|
|
78445
|
-
(function (module, exports) {
|
|
78498
|
+
(function (module, exports$1) {
|
|
78446
78499
|
module.exports = ProgressBar;
|
|
78447
78500
|
function ProgressBar(fmt, options) {
|
|
78448
78501
|
this.stream = options.stream || process.stderr;
|