lakutata 2.0.96 → 2.0.97
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/com/cacher.cjs +31 -135
- package/com/cacher.mjs +23 -127
- package/com/database.cjs +24 -166
- package/com/database.mjs +24 -166
- package/com/docker.cjs +94 -276
- package/com/docker.mjs +39 -221
- package/com/entrypoint.cjs +33 -119
- package/com/entrypoint.mjs +20 -106
- package/com/logger.cjs +19 -123
- package/com/logger.mjs +19 -123
- package/com/monitor.cjs +24 -88
- package/com/monitor.mjs +20 -84
- package/decorator/asst.cjs +5 -7
- package/decorator/asst.mjs +5 -7
- package/decorator/ctrl.cjs +22 -58
- package/decorator/ctrl.mjs +10 -46
- package/decorator/di.cjs +12 -42
- package/decorator/di.mjs +8 -38
- package/decorator/dto.cjs +13 -43
- package/decorator/dto.mjs +9 -39
- package/decorator/orm.cjs +117 -113
- package/decorator/orm.mjs +71 -67
- package/dtos.cjs +8 -38
- package/dtos.mjs +8 -38
- package/helper.cjs +73 -127
- package/helper.mjs +12 -66
- package/lakutata.cjs +116 -328
- package/lakutata.mjs +60 -272
- package/orm.cjs +854 -173
- package/orm.mjs +866 -65
- package/package.json +1 -1
- package/provider/database.cjs +26 -166
- package/provider/database.mjs +26 -166
- package/provider/passwordHash.cjs +18 -82
- package/provider/passwordHash.mjs +18 -82
- package/src/components/Database.cjs +36 -178
- package/src/components/Database.mjs +68 -210
- package/src/components/Logger.cjs +50 -191
- package/src/components/Logger.mjs +46 -194
- package/src/components/cacher/Cacher.cjs +511 -174
- package/src/components/cacher/Cacher.mjs +502 -171
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +547 -35
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +530 -34
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +17 -61
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +19 -63
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +21 -65
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +22 -66
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +7 -45
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +18 -56
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +23 -67
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +23 -67
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +6 -44
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +27 -65
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +11 -55
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +18 -62
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -6
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -6
- package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
- package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +4 -6
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -6
- package/src/components/cacher/options/FileCacheOptions.cjs +15 -45
- package/src/components/cacher/options/FileCacheOptions.mjs +15 -45
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +16 -46
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -47
- package/src/components/cacher/options/MongoCacheOptions.cjs +9 -39
- package/src/components/cacher/options/MongoCacheOptions.mjs +18 -48
- package/src/components/cacher/options/MysqlCacheOptions.cjs +9 -39
- package/src/components/cacher/options/MysqlCacheOptions.mjs +19 -49
- package/src/components/cacher/options/PostgresCacheOptions.cjs +21 -51
- package/src/components/cacher/options/PostgresCacheOptions.mjs +20 -50
- package/src/components/cacher/options/RedisCacheOptions.cjs +26 -56
- package/src/components/cacher/options/RedisCacheOptions.mjs +9 -39
- package/src/components/cacher/options/SqliteCacheOptions.cjs +15 -45
- package/src/components/cacher/options/SqliteCacheOptions.mjs +14 -44
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +32 -214
- package/src/components/docker/ConnectionOptionsBuilder.mjs +37 -219
- package/src/components/docker/Docker.cjs +8727 -408
- package/src/components/docker/Docker.mjs +8903 -578
- package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -6
- package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -6
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -6
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -6
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -6
- package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
- package/src/components/docker/lib/DockerContainer.cjs +174 -330
- package/src/components/docker/lib/DockerContainer.mjs +184 -340
- package/src/components/docker/lib/DockerContainerTTY.cjs +52 -260
- package/src/components/docker/lib/DockerContainerTTY.mjs +48 -263
- package/src/components/docker/lib/DockerImage.cjs +69 -131
- package/src/components/docker/lib/DockerImage.mjs +54 -116
- package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
- package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
- package/src/components/docker/options/DockerPruneOptions.cjs +14 -44
- package/src/components/docker/options/DockerPruneOptions.mjs +15 -45
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +9 -39
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +15 -45
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +12 -42
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +13 -43
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerExecOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerExecOptions.mjs +11 -41
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +13 -43
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerKillOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerKillOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +15 -45
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +15 -45
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +12 -42
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +43 -73
- package/src/components/docker/options/container/ContainerStopOptions.cjs +12 -42
- package/src/components/docker/options/container/ContainerStopOptions.mjs +9 -39
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +9 -39
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +12 -42
- package/src/components/docker/options/image/ImageBuildOptions.cjs +26 -56
- package/src/components/docker/options/image/ImageBuildOptions.mjs +25 -55
- package/src/components/docker/options/image/ImageExportOptions.cjs +14 -44
- package/src/components/docker/options/image/ImageExportOptions.mjs +14 -44
- package/src/components/docker/options/image/ImageImportOptions.cjs +13 -43
- package/src/components/docker/options/image/ImageImportOptions.mjs +12 -42
- package/src/components/docker/options/image/ImagePullOptions.cjs +9 -39
- package/src/components/docker/options/image/ImagePullOptions.mjs +16 -46
- package/src/components/docker/options/image/ImagePushOptions.cjs +15 -45
- package/src/components/docker/options/image/ImagePushOptions.mjs +15 -45
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +12 -42
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +13 -43
- package/src/components/docker/options/image/ImageTagOptions.cjs +9 -39
- package/src/components/docker/options/image/ImageTagOptions.mjs +12 -42
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +9 -39
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +20 -50
- package/src/components/docker/types/ContainerBind.cjs +1 -1
- package/src/components/docker/types/ContainerBind.mjs +1 -1
- package/src/components/docker/types/ContainerCapability.cjs +1 -1
- package/src/components/docker/types/ContainerCapability.mjs +1 -1
- package/src/components/docker/types/ContainerConfig.cjs +1 -1
- package/src/components/docker/types/ContainerConfig.mjs +1 -1
- package/src/components/docker/types/ContainerDevice.cjs +1 -1
- package/src/components/docker/types/ContainerDevice.mjs +1 -1
- package/src/components/docker/types/ContainerNetwork.cjs +1 -1
- package/src/components/docker/types/ContainerNetwork.mjs +1 -1
- package/src/components/docker/types/ContainerPort.cjs +1 -1
- package/src/components/docker/types/ContainerPort.mjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
- package/src/components/docker/types/ContainerState.cjs +1 -1
- package/src/components/docker/types/ContainerState.mjs +1 -1
- package/src/components/docker/types/ContainerStats.cjs +1 -1
- package/src/components/docker/types/ContainerStats.mjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
- package/src/components/docker/types/ImageConfig.cjs +1 -1
- package/src/components/docker/types/ImageConfig.mjs +1 -1
- package/src/components/docker/types/ImageExposePort.cjs +1 -1
- package/src/components/docker/types/ImageExposePort.mjs +1 -1
- package/src/components/docker/types/NetworkInfo.cjs +1 -1
- package/src/components/docker/types/NetworkInfo.mjs +1 -1
- package/src/components/entrypoint/Entrypoint.cjs +1961 -322
- package/src/components/entrypoint/Entrypoint.mjs +1928 -281
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -6
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -6
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -6
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -6
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -6
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -6
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -6
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -6
- package/src/components/entrypoint/lib/AccessControl.cjs +71 -133
- package/src/components/entrypoint/lib/AccessControl.mjs +75 -137
- package/src/components/entrypoint/lib/AccessControlRule.cjs +19 -81
- package/src/components/entrypoint/lib/AccessControlRule.mjs +23 -85
- package/src/components/entrypoint/lib/Controller.cjs +42 -104
- package/src/components/entrypoint/lib/Controller.mjs +43 -105
- package/src/components/monitor/AliveMonitor.cjs +40 -104
- package/src/components/monitor/AliveMonitor.mjs +50 -114
- package/src/components/monitor/CpuMonitor.cjs +40 -104
- package/src/components/monitor/CpuMonitor.mjs +48 -112
- package/src/components/monitor/EventLoopMonitor.cjs +19 -83
- package/src/components/monitor/EventLoopMonitor.mjs +24 -88
- package/src/components/monitor/HttpRequestMonitor.cjs +41 -105
- package/src/components/monitor/HttpRequestMonitor.mjs +45 -109
- package/src/components/monitor/MemoryMonitor.cjs +87 -151
- package/src/components/monitor/MemoryMonitor.mjs +71 -135
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
- package/src/constants/DIMetadataKey.cjs +3 -3
- package/src/constants/DIMetadataKey.mjs +3 -3
- package/src/constants/DTOMetadataKey.cjs +3 -3
- package/src/constants/DTOMetadataKey.mjs +3 -3
- package/src/decorators/asst/After.cjs +4 -6
- package/src/decorators/asst/After.mjs +5 -7
- package/src/decorators/asst/Before.cjs +4 -6
- package/src/decorators/asst/Before.mjs +5 -7
- package/src/decorators/ctrl/CLIAction.cjs +15 -51
- package/src/decorators/ctrl/CLIAction.mjs +19 -55
- package/src/decorators/ctrl/HTTPAction.cjs +15 -51
- package/src/decorators/ctrl/HTTPAction.mjs +19 -55
- package/src/decorators/ctrl/ServiceAction.cjs +15 -51
- package/src/decorators/ctrl/ServiceAction.mjs +18 -54
- package/src/decorators/ctrl/http/DELETE.cjs +12 -48
- package/src/decorators/ctrl/http/DELETE.mjs +14 -50
- package/src/decorators/ctrl/http/GET.cjs +12 -48
- package/src/decorators/ctrl/http/GET.mjs +14 -50
- package/src/decorators/ctrl/http/HEAD.cjs +12 -48
- package/src/decorators/ctrl/http/HEAD.mjs +14 -50
- package/src/decorators/ctrl/http/OPTIONS.cjs +12 -48
- package/src/decorators/ctrl/http/OPTIONS.mjs +14 -50
- package/src/decorators/ctrl/http/PATCH.cjs +12 -48
- package/src/decorators/ctrl/http/PATCH.mjs +14 -50
- package/src/decorators/ctrl/http/POST.cjs +12 -48
- package/src/decorators/ctrl/http/POST.mjs +14 -50
- package/src/decorators/ctrl/http/PUT.cjs +12 -48
- package/src/decorators/ctrl/http/PUT.mjs +14 -50
- package/src/decorators/di/Autoload.cjs +3 -3
- package/src/decorators/di/Autoload.mjs +3 -3
- package/src/decorators/di/Configurable.cjs +10 -40
- package/src/decorators/di/Configurable.mjs +12 -42
- package/src/decorators/di/Inject.cjs +20 -50
- package/src/decorators/di/Inject.mjs +25 -55
- package/src/decorators/di/Lifetime.cjs +5 -7
- package/src/decorators/di/Lifetime.mjs +15 -17
- package/src/decorators/dto/Accept.cjs +10 -40
- package/src/decorators/dto/Accept.mjs +13 -43
- package/src/decorators/dto/Expect.cjs +11 -41
- package/src/decorators/dto/Expect.mjs +13 -43
- package/src/decorators/dto/IndexSignature.cjs +10 -40
- package/src/decorators/dto/IndexSignature.mjs +13 -43
- package/src/decorators/dto/Return.cjs +10 -40
- package/src/decorators/dto/Return.mjs +13 -43
- package/src/decorators/orm/AfterInsert.cjs +17 -95
- package/src/decorators/orm/AfterInsert.mjs +17 -95
- package/src/decorators/orm/AfterLoad.cjs +17 -95
- package/src/decorators/orm/AfterLoad.mjs +17 -95
- package/src/decorators/orm/AfterRecover.cjs +17 -95
- package/src/decorators/orm/AfterRecover.mjs +17 -95
- package/src/decorators/orm/AfterRemove.cjs +17 -95
- package/src/decorators/orm/AfterRemove.mjs +17 -95
- package/src/decorators/orm/AfterSoftRemove.cjs +17 -95
- package/src/decorators/orm/AfterSoftRemove.mjs +17 -95
- package/src/decorators/orm/AfterUpdate.cjs +17 -95
- package/src/decorators/orm/AfterUpdate.mjs +17 -95
- package/src/decorators/orm/BeforeInsert.cjs +17 -95
- package/src/decorators/orm/BeforeInsert.mjs +17 -95
- package/src/decorators/orm/BeforeRecover.cjs +17 -95
- package/src/decorators/orm/BeforeRecover.mjs +17 -95
- package/src/decorators/orm/BeforeRemove.cjs +17 -95
- package/src/decorators/orm/BeforeRemove.mjs +17 -95
- package/src/decorators/orm/BeforeSoftRemove.cjs +17 -95
- package/src/decorators/orm/BeforeSoftRemove.mjs +17 -95
- package/src/decorators/orm/BeforeUpdate.cjs +17 -95
- package/src/decorators/orm/BeforeUpdate.mjs +17 -95
- package/src/decorators/orm/Check.cjs +17 -95
- package/src/decorators/orm/Check.mjs +17 -95
- package/src/decorators/orm/ChildEntity.cjs +17 -95
- package/src/decorators/orm/ChildEntity.mjs +17 -95
- package/src/decorators/orm/Column.cjs +17 -95
- package/src/decorators/orm/Column.mjs +17 -95
- package/src/decorators/orm/CreateDateColumn.cjs +17 -95
- package/src/decorators/orm/CreateDateColumn.mjs +17 -95
- package/src/decorators/orm/DeleteDateColumn.cjs +17 -95
- package/src/decorators/orm/DeleteDateColumn.mjs +17 -95
- package/src/decorators/orm/Entity.cjs +17 -95
- package/src/decorators/orm/Entity.mjs +17 -95
- package/src/decorators/orm/EventSubscriber.cjs +17 -95
- package/src/decorators/orm/EventSubscriber.mjs +17 -95
- package/src/decorators/orm/Exclusion.cjs +17 -95
- package/src/decorators/orm/Exclusion.mjs +17 -95
- package/src/decorators/orm/Generated.cjs +17 -95
- package/src/decorators/orm/Generated.mjs +17 -95
- package/src/decorators/orm/Index.cjs +17 -95
- package/src/decorators/orm/Index.mjs +17 -95
- package/src/decorators/orm/JoinColumn.cjs +17 -95
- package/src/decorators/orm/JoinColumn.mjs +17 -95
- package/src/decorators/orm/JoinTable.cjs +17 -95
- package/src/decorators/orm/JoinTable.mjs +17 -95
- package/src/decorators/orm/ManyToMany.cjs +17 -95
- package/src/decorators/orm/ManyToMany.mjs +17 -95
- package/src/decorators/orm/ManyToOne.cjs +17 -95
- package/src/decorators/orm/ManyToOne.mjs +17 -95
- package/src/decorators/orm/ObjectIdColumn.cjs +17 -95
- package/src/decorators/orm/ObjectIdColumn.mjs +17 -95
- package/src/decorators/orm/OneToMany.cjs +17 -95
- package/src/decorators/orm/OneToMany.mjs +17 -95
- package/src/decorators/orm/OneToOne.cjs +17 -95
- package/src/decorators/orm/OneToOne.mjs +17 -95
- package/src/decorators/orm/PrimaryColumn.cjs +17 -95
- package/src/decorators/orm/PrimaryColumn.mjs +17 -95
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -95
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +17 -95
- package/src/decorators/orm/RelationId.cjs +17 -95
- package/src/decorators/orm/RelationId.mjs +17 -95
- package/src/decorators/orm/TableInheritance.cjs +17 -95
- package/src/decorators/orm/TableInheritance.mjs +17 -95
- package/src/decorators/orm/Tree.cjs +17 -95
- package/src/decorators/orm/Tree.mjs +17 -95
- package/src/decorators/orm/TreeChildren.cjs +17 -95
- package/src/decorators/orm/TreeChildren.mjs +17 -95
- package/src/decorators/orm/TreeLevelColumn.cjs +17 -95
- package/src/decorators/orm/TreeLevelColumn.mjs +17 -95
- package/src/decorators/orm/TreeParent.cjs +17 -95
- package/src/decorators/orm/TreeParent.mjs +17 -95
- package/src/decorators/orm/Unique.cjs +17 -95
- package/src/decorators/orm/Unique.mjs +17 -95
- package/src/decorators/orm/UpdateDateColumn.cjs +17 -95
- package/src/decorators/orm/UpdateDateColumn.mjs +17 -95
- package/src/decorators/orm/VersionColumn.cjs +17 -95
- package/src/decorators/orm/VersionColumn.mjs +17 -95
- package/src/decorators/orm/ViewColumn.cjs +17 -95
- package/src/decorators/orm/ViewColumn.mjs +17 -95
- package/src/decorators/orm/ViewEntity.cjs +17 -95
- package/src/decorators/orm/ViewEntity.mjs +17 -95
- package/src/decorators/orm/VirtualColumn.cjs +17 -95
- package/src/decorators/orm/VirtualColumn.mjs +17 -95
- package/src/dto/PaginationResultDTO.cjs +9 -39
- package/src/dto/PaginationResultDTO.mjs +18 -48
- package/src/dto/PaginationSearchDTO.cjs +9 -39
- package/src/dto/PaginationSearchDTO.mjs +13 -43
- package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -6
- package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -6
- package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -6
- package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -6
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -6
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -6
- package/src/exceptions/InvalidObjectTypeException.cjs +4 -6
- package/src/exceptions/InvalidObjectTypeException.mjs +4 -6
- package/src/exceptions/MethodNotFoundException.cjs +4 -6
- package/src/exceptions/MethodNotFoundException.mjs +4 -6
- package/src/exceptions/alias/AliasExistsException.cjs +4 -6
- package/src/exceptions/alias/AliasExistsException.mjs +6 -8
- package/src/exceptions/alias/AliasNotFoundException.cjs +4 -6
- package/src/exceptions/alias/AliasNotFoundException.mjs +4 -6
- package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -6
- package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -6
- package/src/exceptions/di/DependencyInjectionException.cjs +4 -6
- package/src/exceptions/di/DependencyInjectionException.mjs +4 -6
- package/src/exceptions/di/LifetimeLockedException.cjs +4 -6
- package/src/exceptions/di/LifetimeLockedException.mjs +4 -6
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -6
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -6
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -6
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -6
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -6
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -6
- package/src/exceptions/dto/InvalidValueException.cjs +4 -6
- package/src/exceptions/dto/InvalidValueException.mjs +4 -6
- package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
- package/src/interfaces/IConstructor.cjs +1 -1
- package/src/interfaces/IConstructor.mjs +1 -1
- package/src/interfaces/IPatRun.cjs +1 -1
- package/src/interfaces/IPatRun.mjs +1 -1
- package/src/lib/base/BaseObject.cjs +51 -259
- package/src/lib/base/BaseObject.mjs +41 -256
- package/src/lib/base/Context.cjs +11 -41
- package/src/lib/base/Context.mjs +23 -53
- package/src/lib/base/EventEmitter.cjs +1398 -47
- package/src/lib/base/EventEmitter.mjs +1397 -46
- package/src/lib/base/abstracts/Exception.cjs +12 -14
- package/src/lib/base/abstracts/Exception.mjs +4 -6
- package/src/lib/base/async-constructor/Append.cjs +1 -1
- package/src/lib/base/async-constructor/Append.mjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.cjs +9 -39
- package/src/lib/base/internal/ActionOptions.mjs +9 -39
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +54 -116
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +54 -116
- package/src/lib/base/internal/BasicInfo.cjs +13 -15
- package/src/lib/base/internal/BasicInfo.mjs +15 -17
- package/src/lib/base/internal/CamelCase.cjs +1 -1
- package/src/lib/base/internal/CamelCase.mjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +3 -3
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +3 -3
- package/src/lib/base/internal/ConstructorSymbol.cjs +3 -3
- package/src/lib/base/internal/ConstructorSymbol.mjs +3 -3
- package/src/lib/base/internal/ControllerEntrypoint.cjs +16 -24
- package/src/lib/base/internal/ControllerEntrypoint.mjs +39 -47
- package/src/lib/base/internal/DataValidator.cjs +203 -27
- package/src/lib/base/internal/DataValidator.mjs +203 -27
- package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
- package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
- package/src/lib/base/internal/FlexibleDTO.cjs +11 -41
- package/src/lib/base/internal/FlexibleDTO.mjs +13 -43
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +21 -51
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +23 -53
- package/src/lib/base/internal/IEEE754.cjs +1 -1
- package/src/lib/base/internal/IEEE754.mjs +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.cjs +15 -17
- package/src/lib/base/internal/MethodAssistantFunction.mjs +8 -10
- package/src/lib/base/internal/MethodValidation.cjs +55 -85
- package/src/lib/base/internal/MethodValidation.mjs +42 -72
- package/src/lib/base/internal/ModuleConfigLoader.cjs +81 -143
- package/src/lib/base/internal/ModuleConfigLoader.mjs +76 -138
- package/src/lib/base/internal/ObjectConfiguration.cjs +26 -56
- package/src/lib/base/internal/ObjectConfiguration.mjs +25 -55
- package/src/lib/base/internal/ObjectContainer.cjs +3 -3
- package/src/lib/base/internal/ObjectContainer.mjs +3 -3
- package/src/lib/base/internal/ObjectInjection.cjs +3 -3
- package/src/lib/base/internal/ObjectInjection.mjs +3 -3
- package/src/lib/base/internal/ObjectLifetime.cjs +5 -7
- package/src/lib/base/internal/ObjectLifetime.mjs +12 -14
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +23 -121
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +14 -114
- package/src/lib/base/internal/ObjectType.cjs +27 -119
- package/src/lib/base/internal/ObjectType.mjs +20 -119
- package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
- package/src/lib/base/internal/PatternManager.cjs +831 -7
- package/src/lib/base/internal/PatternManager.mjs +835 -11
- package/src/lib/base/internal/StringifyPattern.cjs +5 -9
- package/src/lib/base/internal/StringifyPattern.mjs +5 -9
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +12 -42
- package/src/lib/context/CLIContext.mjs +15 -45
- package/src/lib/context/HTTPContext.cjs +15 -45
- package/src/lib/context/HTTPContext.mjs +14 -44
- package/src/lib/context/ServiceContext.cjs +12 -42
- package/src/lib/context/ServiceContext.mjs +18 -48
- package/src/lib/core/Alias.cjs +46 -48
- package/src/lib/core/Alias.mjs +24 -26
- package/src/lib/core/Application.cjs +486 -351
- package/src/lib/core/Application.mjs +531 -400
- package/src/lib/core/Component.cjs +24 -88
- package/src/lib/core/Component.mjs +28 -92
- package/src/lib/core/Container.cjs +50 -326
- package/src/lib/core/Container.mjs +45 -323
- package/src/lib/core/DTO.cjs +16 -194
- package/src/lib/core/DTO.mjs +12 -197
- package/src/lib/core/Module.cjs +39 -107
- package/src/lib/core/Module.mjs +53 -121
- package/src/lib/core/Provider.cjs +19 -81
- package/src/lib/core/Provider.mjs +25 -87
- package/src/lib/core/Time.cjs +5 -7
- package/src/lib/core/Time.mjs +5 -7
- package/src/lib/helpers/ArrayToSet.cjs +1 -1
- package/src/lib/helpers/ArrayToSet.mjs +1 -1
- package/src/lib/helpers/As.cjs +1 -1
- package/src/lib/helpers/As.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
- package/src/lib/helpers/Delay.cjs +1 -1
- package/src/lib/helpers/Delay.mjs +1 -1
- package/src/lib/helpers/DevNull.cjs +1 -1
- package/src/lib/helpers/DevNull.mjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +5502 -17
- package/src/lib/helpers/Glob.mjs +5472 -17
- package/src/lib/helpers/GraceExit.cjs +1 -1
- package/src/lib/helpers/GraceExit.mjs +1 -1
- package/src/lib/helpers/HexToIEEE754.cjs +1 -1
- package/src/lib/helpers/HexToIEEE754.mjs +1 -1
- package/src/lib/helpers/HexToSigned.cjs +1 -1
- package/src/lib/helpers/HexToSigned.mjs +1 -1
- package/src/lib/helpers/HexToUnsigned.cjs +1 -1
- package/src/lib/helpers/HexToUnsigned.mjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
- package/src/lib/helpers/IPToolkit.cjs +1 -1
- package/src/lib/helpers/IPToolkit.mjs +1 -1
- package/src/lib/helpers/IsAbortError.cjs +1 -1
- package/src/lib/helpers/IsAbortError.mjs +1 -1
- package/src/lib/helpers/IsEmptyObject.cjs +1 -1
- package/src/lib/helpers/IsEmptyObject.mjs +1 -1
- package/src/lib/helpers/IsExists.cjs +1 -1
- package/src/lib/helpers/IsExists.mjs +1 -1
- package/src/lib/helpers/IsGlobString.cjs +4 -10
- package/src/lib/helpers/IsGlobString.mjs +3 -11
- package/src/lib/helpers/IsHtml.cjs +5 -5
- package/src/lib/helpers/IsHtml.mjs +6 -6
- package/src/lib/helpers/IsNativeFunction.cjs +1 -1
- package/src/lib/helpers/IsNativeFunction.mjs +1 -1
- package/src/lib/helpers/IsPath.cjs +1 -1
- package/src/lib/helpers/IsPath.mjs +1 -1
- package/src/lib/helpers/IsPromise.cjs +1 -1
- package/src/lib/helpers/IsPromise.mjs +1 -1
- package/src/lib/helpers/IsPromiseLike.cjs +1 -1
- package/src/lib/helpers/IsPromiseLike.mjs +1 -1
- package/src/lib/helpers/IsSymbol.cjs +10 -44
- package/src/lib/helpers/IsSymbol.mjs +9 -45
- package/src/lib/helpers/IsXML.cjs +1711 -6
- package/src/lib/helpers/IsXML.mjs +1712 -7
- package/src/lib/helpers/MD5.cjs +4 -4
- package/src/lib/helpers/MD5.mjs +4 -4
- package/src/lib/helpers/MergeArray.cjs +1 -1
- package/src/lib/helpers/MergeArray.mjs +1 -1
- package/src/lib/helpers/MergeMap.cjs +1 -1
- package/src/lib/helpers/MergeMap.mjs +1 -1
- package/src/lib/helpers/MergeSet.cjs +1 -1
- package/src/lib/helpers/MergeSet.mjs +1 -1
- package/src/lib/helpers/NoCase.cjs +1 -1
- package/src/lib/helpers/NoCase.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +2 -6
- package/src/lib/helpers/NonceStr.mjs +4 -8
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +405 -7
- package/src/lib/helpers/ObjectHash.mjs +399 -7
- package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
- package/src/lib/helpers/ObjectPath.cjs +1 -1
- package/src/lib/helpers/ObjectPath.mjs +1 -1
- package/src/lib/helpers/ObjectPrototype.cjs +1 -1
- package/src/lib/helpers/ObjectPrototype.mjs +1 -1
- package/src/lib/helpers/ObjectToMap.cjs +1 -1
- package/src/lib/helpers/ObjectToMap.mjs +1 -1
- package/src/lib/helpers/Paginator.cjs +1 -1
- package/src/lib/helpers/Paginator.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +172 -11
- package/src/lib/helpers/RandomString.mjs +166 -11
- package/src/lib/helpers/SHA1.cjs +4 -4
- package/src/lib/helpers/SHA1.mjs +4 -4
- package/src/lib/helpers/SHA256.cjs +4 -4
- package/src/lib/helpers/SHA256.mjs +4 -4
- package/src/lib/helpers/SetToArray.cjs +1 -1
- package/src/lib/helpers/SetToArray.mjs +1 -1
- package/src/lib/helpers/SignedToHex.cjs +1 -1
- package/src/lib/helpers/SignedToHex.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +2 -6
- package/src/lib/helpers/SortArray.mjs +7 -11
- package/src/lib/helpers/SortKeys.cjs +1 -1
- package/src/lib/helpers/SortKeys.mjs +1 -1
- package/src/lib/helpers/SortObject.cjs +1 -1
- package/src/lib/helpers/SortObject.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +2 -2
- package/src/lib/helpers/Statistics.mjs +2 -2
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +417 -38
- package/src/lib/helpers/URLBuilder.mjs +417 -38
- package/src/lib/helpers/UUID.cjs +340 -22
- package/src/lib/helpers/UUID.mjs +340 -22
- package/src/lib/helpers/UniqueArray.cjs +1 -1
- package/src/lib/helpers/UniqueArray.mjs +1 -1
- package/src/lib/helpers/UnsignedToHex.cjs +1 -1
- package/src/lib/helpers/UnsignedToHex.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +145 -197
- package/src/lib/ioc/DependencyInjectionContainer.mjs +102 -154
- package/src/lib/ioc/Errors.cjs +27 -57
- package/src/lib/ioc/Errors.mjs +25 -55
- package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
- package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
- package/src/lib/ioc/InjectionMode.cjs +1 -1
- package/src/lib/ioc/InjectionMode.mjs +1 -1
- package/src/lib/ioc/Lifetime.cjs +1 -1
- package/src/lib/ioc/Lifetime.mjs +1 -1
- package/src/lib/ioc/ListModules.cjs +5811 -99
- package/src/lib/ioc/ListModules.mjs +5779 -79
- package/src/lib/ioc/LoadModules.cjs +63 -93
- package/src/lib/ioc/LoadModules.mjs +65 -95
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +42 -72
- package/src/lib/ioc/Resolvers.mjs +44 -74
- package/src/lib/ioc/Utils.cjs +28 -58
- package/src/lib/ioc/Utils.mjs +34 -64
- package/src/lib/validation/VLD.cjs +11342 -98
- package/src/lib/validation/VLD.mjs +11298 -80
- package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
- package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
- package/src/lib/validation/interfaces/Reference.cjs +1 -1
- package/src/lib/validation/interfaces/Reference.mjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
- package/src/lib/validation/interfaces/State.cjs +1 -1
- package/src/lib/validation/interfaces/State.mjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
- package/src/lib/validation/types/CustomValidator.cjs +1 -1
- package/src/lib/validation/types/CustomValidator.mjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
- package/src/lib/validation/types/IsUnion.cjs +1 -1
- package/src/lib/validation/types/IsUnion.mjs +1 -1
- package/src/lib/validation/types/LanguageMessages.cjs +1 -1
- package/src/lib/validation/types/LanguageMessages.mjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
- package/src/lib/validation/types/NullableType.cjs +1 -1
- package/src/lib/validation/types/NullableType.mjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
- package/src/lib/validation/types/PresenceMode.cjs +1 -1
- package/src/lib/validation/types/PresenceMode.mjs +1 -1
- package/src/lib/validation/types/Primitives.cjs +1 -1
- package/src/lib/validation/types/Primitives.mjs +1 -1
- package/src/lib/validation/types/Schema.cjs +1 -1
- package/src/lib/validation/types/Schema.mjs +1 -1
- package/src/lib/validation/types/SchemaFunction.cjs +1 -1
- package/src/lib/validation/types/SchemaFunction.mjs +1 -1
- package/src/lib/validation/types/SchemaLike.cjs +1 -1
- package/src/lib/validation/types/SchemaLike.mjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
- package/src/lib/validation/types/SchemaMap.cjs +1 -1
- package/src/lib/validation/types/SchemaMap.mjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
- package/src/lib/validation/types/Types.cjs +1 -1
- package/src/lib/validation/types/Types.mjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
- package/src/options/ApplicationOptions.cjs +22 -84
- package/src/options/ApplicationOptions.mjs +25 -87
- package/src/options/LoadAnonymousObjectOptions.cjs +20 -82
- package/src/options/LoadAnonymousObjectOptions.mjs +22 -84
- package/src/options/LoadNamedObjectOptions.cjs +20 -82
- package/src/options/LoadNamedObjectOptions.mjs +22 -84
- package/src/options/LoadObjectOptions.cjs +23 -96
- package/src/options/LoadObjectOptions.mjs +18 -98
- package/src/options/ModuleLoadObjectsOptions.cjs +20 -82
- package/src/options/ModuleLoadObjectsOptions.mjs +20 -82
- package/src/options/ModuleOptions.cjs +26 -88
- package/src/options/ModuleOptions.mjs +25 -87
- package/src/options/OverridableNamedObjectOptions.cjs +20 -82
- package/src/options/OverridableNamedObjectOptions.mjs +23 -85
- package/src/options/OverridableObjectOptions.cjs +20 -82
- package/src/options/OverridableObjectOptions.mjs +22 -84
- package/src/providers/Database.cjs +41 -181
- package/src/providers/Database.mjs +74 -214
- package/src/providers/PasswordHash.cjs +541 -89
- package/src/providers/PasswordHash.mjs +535 -89
- package/src/providers/migration/GenerateMigration.cjs +37 -389
- package/src/providers/migration/GenerateMigration.mjs +33 -386
- package/src/types/ActionPattern.cjs +1 -1
- package/src/types/ActionPattern.mjs +1 -1
- package/src/types/ClassDecorator.cjs +1 -1
- package/src/types/ClassDecorator.mjs +1 -1
- package/src/types/ComponentOptions.cjs +1 -1
- package/src/types/ComponentOptions.mjs +1 -1
- package/src/types/JSONSchema.cjs +1 -1
- package/src/types/JSONSchema.mjs +1 -1
- package/src/types/MethodDecorator.cjs +1 -1
- package/src/types/MethodDecorator.mjs +1 -1
- package/src/types/ModuleOptions.cjs +1 -1
- package/src/types/ModuleOptions.mjs +1 -1
- package/src/types/ObjectOptions.cjs +1 -1
- package/src/types/ObjectOptions.mjs +1 -1
- package/src/types/ParameterDecorator.cjs +1 -1
- package/src/types/ParameterDecorator.mjs +1 -1
- package/src/types/PropertyDecorator.cjs +1 -1
- package/src/types/PropertyDecorator.mjs +1 -1
- package/src/types/ProviderOptions.cjs +1 -1
- package/src/types/ProviderOptions.mjs +1 -1
- package/vendor/Package.internal.1.cjs +938 -206
- package/vendor/Package.internal.1.mjs +938 -202
- package/vendor/Package.internal.10.cjs +17 -227
- package/vendor/Package.internal.10.mjs +18 -226
- package/vendor/Package.internal.11.cjs +15 -1608
- package/vendor/Package.internal.11.mjs +16 -1579
- package/vendor/Package.internal.12.cjs +13 -12547
- package/vendor/Package.internal.12.mjs +14 -12530
- package/vendor/Package.internal.13.cjs +22 -357
- package/vendor/Package.internal.13.mjs +23 -358
- package/vendor/Package.internal.14.cjs +17 -786
- package/vendor/Package.internal.14.mjs +18 -787
- package/vendor/Package.internal.15.cjs +18 -72
- package/vendor/Package.internal.15.mjs +19 -71
- package/vendor/Package.internal.16.cjs +13 -977
- package/vendor/Package.internal.16.mjs +14 -966
- package/vendor/Package.internal.17.cjs +19 -43
- package/vendor/Package.internal.17.mjs +20 -44
- package/vendor/Package.internal.18.cjs +16 -262
- package/vendor/Package.internal.18.mjs +17 -263
- package/vendor/Package.internal.19.cjs +16 -428
- package/vendor/Package.internal.19.mjs +17 -429
- package/vendor/Package.internal.2.cjs +29 -86
- package/vendor/Package.internal.2.mjs +30 -83
- package/vendor/Package.internal.20.cjs +18 -556
- package/vendor/Package.internal.20.mjs +19 -551
- package/vendor/Package.internal.21.cjs +19 -400
- package/vendor/Package.internal.21.mjs +20 -401
- package/vendor/Package.internal.22.cjs +56 -913
- package/vendor/Package.internal.22.mjs +57 -908
- package/vendor/Package.internal.23.cjs +15 -218
- package/vendor/Package.internal.23.mjs +17 -220
- package/vendor/Package.internal.24.cjs +16 -990
- package/vendor/Package.internal.24.mjs +17 -991
- package/vendor/Package.internal.25.cjs +32 -9
- package/vendor/Package.internal.25.mjs +33 -8
- package/vendor/Package.internal.26.cjs +15 -121
- package/vendor/Package.internal.26.mjs +16 -120
- package/vendor/Package.internal.27.cjs +18 -139
- package/vendor/Package.internal.27.mjs +19 -138
- package/vendor/Package.internal.28.cjs +21 -5
- package/vendor/Package.internal.28.mjs +22 -4
- package/vendor/Package.internal.29.cjs +36 -19
- package/vendor/Package.internal.29.mjs +37 -18
- package/vendor/Package.internal.3.cjs +532 -14232
- package/vendor/Package.internal.3.mjs +529 -14211
- package/vendor/Package.internal.30.cjs +22 -474
- package/vendor/Package.internal.30.mjs +23 -469
- package/vendor/Package.internal.31.cjs +21 -74
- package/vendor/Package.internal.31.mjs +24 -71
- package/vendor/Package.internal.310.cjs +10 -0
- package/vendor/Package.internal.310.mjs +8 -0
- package/vendor/Package.internal.32.cjs +40 -2
- package/vendor/Package.internal.32.mjs +42 -2
- package/vendor/Package.internal.33.cjs +34 -35
- package/vendor/Package.internal.33.mjs +35 -34
- package/vendor/Package.internal.34.cjs +20 -21
- package/vendor/Package.internal.34.mjs +21 -20
- package/vendor/Package.internal.35.cjs +29 -10
- package/vendor/Package.internal.35.mjs +30 -9
- package/vendor/Package.internal.36.cjs +39 -188
- package/vendor/Package.internal.36.mjs +42 -191
- package/vendor/Package.internal.37.cjs +43 -59
- package/vendor/Package.internal.37.mjs +46 -60
- package/vendor/Package.internal.38.cjs +43 -158
- package/vendor/Package.internal.38.mjs +44 -159
- package/vendor/Package.internal.39.cjs +19 -2070
- package/vendor/Package.internal.39.mjs +20 -2065
- package/vendor/Package.internal.4.cjs +463 -961
- package/vendor/Package.internal.4.mjs +444 -960
- package/vendor/Package.internal.40.cjs +16 -512
- package/vendor/Package.internal.40.mjs +17 -505
- package/vendor/Package.internal.41.cjs +15 -412
- package/vendor/Package.internal.41.mjs +16 -407
- package/vendor/Package.internal.42.cjs +21 -2356
- package/vendor/Package.internal.42.mjs +22 -2345
- package/vendor/Package.internal.43.cjs +17 -56
- package/vendor/Package.internal.43.mjs +18 -63
- package/vendor/Package.internal.44.cjs +25 -146
- package/vendor/Package.internal.44.mjs +26 -145
- package/vendor/Package.internal.45.cjs +31 -626
- package/vendor/Package.internal.45.mjs +33 -628
- package/vendor/Package.internal.46.cjs +16 -238
- package/vendor/Package.internal.46.mjs +17 -239
- package/vendor/Package.internal.47.cjs +16 -220
- package/vendor/Package.internal.47.mjs +17 -215
- package/vendor/Package.internal.48.cjs +23 -2
- package/vendor/Package.internal.48.mjs +25 -2
- package/vendor/Package.internal.49.cjs +24 -355
- package/vendor/Package.internal.49.mjs +27 -352
- package/vendor/Package.internal.5.cjs +4275 -340
- package/vendor/Package.internal.5.mjs +4274 -341
- package/vendor/Package.internal.50.cjs +30 -30
- package/vendor/Package.internal.50.mjs +32 -30
- package/vendor/Package.internal.51.cjs +48322 -38
- package/vendor/Package.internal.51.mjs +48282 -38
- package/vendor/Package.internal.510.cjs +154 -0
- package/vendor/Package.internal.510.mjs +142 -0
- package/vendor/Package.internal.511.cjs +168 -0
- package/vendor/Package.internal.511.mjs +156 -0
- package/vendor/Package.internal.512.cjs +6 -0
- package/vendor/Package.internal.512.mjs +6 -0
- package/vendor/Package.internal.513.cjs +192 -0
- package/vendor/Package.internal.513.mjs +180 -0
- package/vendor/Package.internal.52.cjs +676 -16
- package/vendor/Package.internal.52.mjs +672 -16
- package/vendor/{Package.internal.180.cjs → Package.internal.522.cjs} +1 -1
- package/vendor/{Package.internal.180.mjs → Package.internal.522.mjs} +2 -2
- package/vendor/Package.internal.53.cjs +7094 -63
- package/vendor/Package.internal.53.mjs +7067 -60
- package/vendor/Package.internal.54.cjs +183 -77
- package/vendor/Package.internal.54.mjs +184 -78
- package/vendor/Package.internal.542.cjs +171 -0
- package/vendor/Package.internal.542.mjs +153 -0
- package/vendor/Package.internal.55.cjs +3982 -56
- package/vendor/Package.internal.55.mjs +3995 -47
- package/vendor/Package.internal.552.cjs +49615 -0
- package/vendor/Package.internal.552.mjs +49572 -0
- package/vendor/Package.internal.56.cjs +838 -20
- package/vendor/Package.internal.56.mjs +839 -19
- package/vendor/Package.internal.57.cjs +14762 -322
- package/vendor/Package.internal.57.mjs +14740 -325
- package/vendor/Package.internal.58.cjs +136 -2
- package/vendor/Package.internal.58.mjs +126 -2
- package/vendor/Package.internal.59.cjs +323 -188
- package/vendor/Package.internal.59.mjs +319 -188
- package/vendor/Package.internal.6.cjs +4 -6109
- package/vendor/Package.internal.6.mjs +4 -6103
- package/vendor/Package.internal.7.cjs +6543 -494
- package/vendor/Package.internal.7.mjs +6531 -494
- package/vendor/Package.internal.8.cjs +152 -33
- package/vendor/Package.internal.8.mjs +152 -31
- package/vendor/Package.internal.9.cjs +16 -2160
- package/vendor/Package.internal.9.mjs +17 -2133
- package/vendor/Package.internal.100.cjs +0 -69
- package/vendor/Package.internal.100.mjs +0 -67
- package/vendor/Package.internal.101.cjs +0 -123
- package/vendor/Package.internal.101.mjs +0 -121
- package/vendor/Package.internal.102.cjs +0 -16
- package/vendor/Package.internal.102.mjs +0 -8
- package/vendor/Package.internal.103.cjs +0 -4
- package/vendor/Package.internal.103.mjs +0 -2
- package/vendor/Package.internal.104.cjs +0 -4
- package/vendor/Package.internal.104.mjs +0 -2
- package/vendor/Package.internal.105.cjs +0 -112
- package/vendor/Package.internal.105.mjs +0 -98
- package/vendor/Package.internal.106.cjs +0 -88
- package/vendor/Package.internal.106.mjs +0 -84
- package/vendor/Package.internal.107.cjs +0 -58
- package/vendor/Package.internal.107.mjs +0 -52
- package/vendor/Package.internal.108.cjs +0 -20
- package/vendor/Package.internal.108.mjs +0 -18
- package/vendor/Package.internal.109.cjs +0 -96
- package/vendor/Package.internal.109.mjs +0 -96
- package/vendor/Package.internal.110.cjs +0 -113
- package/vendor/Package.internal.110.mjs +0 -113
- package/vendor/Package.internal.111.cjs +0 -2176
- package/vendor/Package.internal.111.mjs +0 -2174
- package/vendor/Package.internal.112.cjs +0 -2466
- package/vendor/Package.internal.112.mjs +0 -2434
- package/vendor/Package.internal.113.cjs +0 -1306
- package/vendor/Package.internal.113.mjs +0 -1292
- package/vendor/Package.internal.114.cjs +0 -33
- package/vendor/Package.internal.114.mjs +0 -31
- package/vendor/Package.internal.115.cjs +0 -20
- package/vendor/Package.internal.115.mjs +0 -18
- package/vendor/Package.internal.116.cjs +0 -21
- package/vendor/Package.internal.116.mjs +0 -21
- package/vendor/Package.internal.117.cjs +0 -52
- package/vendor/Package.internal.117.mjs +0 -52
- package/vendor/Package.internal.118.cjs +0 -141
- package/vendor/Package.internal.118.mjs +0 -141
- package/vendor/Package.internal.119.cjs +0 -2
- package/vendor/Package.internal.119.mjs +0 -1
- package/vendor/Package.internal.120.cjs +0 -6
- package/vendor/Package.internal.120.mjs +0 -4
- package/vendor/Package.internal.121.cjs +0 -4
- package/vendor/Package.internal.121.mjs +0 -2
- package/vendor/Package.internal.122.cjs +0 -4
- package/vendor/Package.internal.122.mjs +0 -2
- package/vendor/Package.internal.123.cjs +0 -4
- package/vendor/Package.internal.123.mjs +0 -2
- package/vendor/Package.internal.124.cjs +0 -49
- package/vendor/Package.internal.124.mjs +0 -47
- package/vendor/Package.internal.125.cjs +0 -14
- package/vendor/Package.internal.125.mjs +0 -14
- package/vendor/Package.internal.126.cjs +0 -12
- package/vendor/Package.internal.126.mjs +0 -12
- package/vendor/Package.internal.127.cjs +0 -20
- package/vendor/Package.internal.127.mjs +0 -18
- package/vendor/Package.internal.128.cjs +0 -118
- package/vendor/Package.internal.128.mjs +0 -116
- package/vendor/Package.internal.129.cjs +0 -18
- package/vendor/Package.internal.129.mjs +0 -16
- package/vendor/Package.internal.130.cjs +0 -19
- package/vendor/Package.internal.130.mjs +0 -17
- package/vendor/Package.internal.131.cjs +0 -8876
- package/vendor/Package.internal.131.mjs +0 -8874
- package/vendor/Package.internal.132.cjs +0 -899
- package/vendor/Package.internal.132.mjs +0 -897
- package/vendor/Package.internal.133.cjs +0 -6769
- package/vendor/Package.internal.133.mjs +0 -6775
- package/vendor/Package.internal.134.cjs +0 -473
- package/vendor/Package.internal.134.mjs +0 -459
- package/vendor/Package.internal.135.cjs +0 -617
- package/vendor/Package.internal.135.mjs +0 -611
- package/vendor/Package.internal.136.cjs +0 -97
- package/vendor/Package.internal.136.mjs +0 -89
- package/vendor/Package.internal.137.cjs +0 -4
- package/vendor/Package.internal.137.mjs +0 -2
- package/vendor/Package.internal.138.cjs +0 -3753
- package/vendor/Package.internal.138.mjs +0 -3751
- package/vendor/Package.internal.139.cjs +0 -561
- package/vendor/Package.internal.139.mjs +0 -559
- package/vendor/Package.internal.140.cjs +0 -4
- package/vendor/Package.internal.140.mjs +0 -2
- package/vendor/Package.internal.141.cjs +0 -4
- package/vendor/Package.internal.141.mjs +0 -2
- package/vendor/Package.internal.142.cjs +0 -4
- package/vendor/Package.internal.142.mjs +0 -2
- package/vendor/Package.internal.143.cjs +0 -4
- package/vendor/Package.internal.143.mjs +0 -2
- package/vendor/Package.internal.144.cjs +0 -4
- package/vendor/Package.internal.144.mjs +0 -2
- package/vendor/Package.internal.145.cjs +0 -4
- package/vendor/Package.internal.145.mjs +0 -2
- package/vendor/Package.internal.146.cjs +0 -4
- package/vendor/Package.internal.146.mjs +0 -2
- package/vendor/Package.internal.147.cjs +0 -4
- package/vendor/Package.internal.147.mjs +0 -2
- package/vendor/Package.internal.148.cjs +0 -4
- package/vendor/Package.internal.148.mjs +0 -2
- package/vendor/Package.internal.149.cjs +0 -4
- package/vendor/Package.internal.149.mjs +0 -2
- package/vendor/Package.internal.150.cjs +0 -4
- package/vendor/Package.internal.150.mjs +0 -2
- package/vendor/Package.internal.151.cjs +0 -408
- package/vendor/Package.internal.151.mjs +0 -400
- package/vendor/Package.internal.152.cjs +0 -104
- package/vendor/Package.internal.152.mjs +0 -104
- package/vendor/Package.internal.153.cjs +0 -27
- package/vendor/Package.internal.153.mjs +0 -27
- package/vendor/Package.internal.154.cjs +0 -4
- package/vendor/Package.internal.154.mjs +0 -2
- package/vendor/Package.internal.155.cjs +0 -4
- package/vendor/Package.internal.155.mjs +0 -2
- package/vendor/Package.internal.156.cjs +0 -723
- package/vendor/Package.internal.156.mjs +0 -723
- package/vendor/Package.internal.157.cjs +0 -1548
- package/vendor/Package.internal.157.mjs +0 -1540
- package/vendor/Package.internal.158.cjs +0 -364
- package/vendor/Package.internal.158.mjs +0 -364
- package/vendor/Package.internal.159.cjs +0 -107
- package/vendor/Package.internal.159.mjs +0 -107
- package/vendor/Package.internal.160.cjs +0 -636
- package/vendor/Package.internal.160.mjs +0 -622
- package/vendor/Package.internal.161.cjs +0 -543
- package/vendor/Package.internal.161.mjs +0 -533
- package/vendor/Package.internal.162.cjs +0 -605
- package/vendor/Package.internal.162.mjs +0 -605
- package/vendor/Package.internal.163.cjs +0 -139
- package/vendor/Package.internal.163.mjs +0 -131
- package/vendor/Package.internal.164.cjs +0 -119
- package/vendor/Package.internal.164.mjs +0 -111
- package/vendor/Package.internal.165.cjs +0 -1224
- package/vendor/Package.internal.165.mjs +0 -1214
- package/vendor/Package.internal.166.cjs +0 -90
- package/vendor/Package.internal.166.mjs +0 -98
- package/vendor/Package.internal.167.cjs +0 -4
- package/vendor/Package.internal.167.mjs +0 -2
- package/vendor/Package.internal.168.cjs +0 -4
- package/vendor/Package.internal.168.mjs +0 -2
- package/vendor/Package.internal.169.cjs +0 -55
- package/vendor/Package.internal.169.mjs +0 -55
- package/vendor/Package.internal.170.cjs +0 -10
- package/vendor/Package.internal.170.mjs +0 -10
- package/vendor/Package.internal.171.cjs +0 -12
- package/vendor/Package.internal.171.mjs +0 -6
- package/vendor/Package.internal.172.cjs +0 -165
- package/vendor/Package.internal.172.mjs +0 -163
- package/vendor/Package.internal.173.cjs +0 -23
- package/vendor/Package.internal.173.mjs +0 -15
- package/vendor/Package.internal.174.cjs +0 -251
- package/vendor/Package.internal.174.mjs +0 -249
- package/vendor/Package.internal.175.cjs +0 -949
- package/vendor/Package.internal.175.mjs +0 -947
- package/vendor/Package.internal.176.cjs +0 -27
- package/vendor/Package.internal.176.mjs +0 -27
- package/vendor/Package.internal.177.cjs +0 -80
- package/vendor/Package.internal.177.mjs +0 -72
- package/vendor/Package.internal.178.cjs +0 -655
- package/vendor/Package.internal.178.mjs +0 -653
- package/vendor/Package.internal.179.cjs +0 -77
- package/vendor/Package.internal.179.mjs +0 -75
- package/vendor/Package.internal.181.cjs +0 -70
- package/vendor/Package.internal.181.mjs +0 -68
- package/vendor/Package.internal.182.cjs +0 -112
- package/vendor/Package.internal.182.mjs +0 -110
- package/vendor/Package.internal.183.cjs +0 -102
- package/vendor/Package.internal.183.mjs +0 -100
- package/vendor/Package.internal.184.cjs +0 -45450
- package/vendor/Package.internal.184.mjs +0 -45432
- package/vendor/Package.internal.185.cjs +0 -8
- package/vendor/Package.internal.185.mjs +0 -6
- package/vendor/Package.internal.186.cjs +0 -30
- package/vendor/Package.internal.186.mjs +0 -28
- package/vendor/Package.internal.187.cjs +0 -317
- package/vendor/Package.internal.187.mjs +0 -315
- package/vendor/Package.internal.188.cjs +0 -943
- package/vendor/Package.internal.188.mjs +0 -951
- package/vendor/Package.internal.189.cjs +0 -1090
- package/vendor/Package.internal.189.mjs +0 -1090
- package/vendor/Package.internal.190.cjs +0 -165
- package/vendor/Package.internal.190.mjs +0 -165
- package/vendor/Package.internal.191.cjs +0 -15
- package/vendor/Package.internal.191.mjs +0 -13
- package/vendor/Package.internal.192.cjs +0 -14
- package/vendor/Package.internal.192.mjs +0 -12
- package/vendor/Package.internal.193.cjs +0 -49
- package/vendor/Package.internal.193.mjs +0 -47
- package/vendor/Package.internal.194.cjs +0 -493
- package/vendor/Package.internal.194.mjs +0 -471
- package/vendor/Package.internal.195.cjs +0 -4
- package/vendor/Package.internal.195.mjs +0 -2
- package/vendor/Package.internal.196.cjs +0 -4
- package/vendor/Package.internal.196.mjs +0 -2
- package/vendor/Package.internal.197.cjs +0 -4
- package/vendor/Package.internal.197.mjs +0 -2
- package/vendor/Package.internal.198.cjs +0 -4
- package/vendor/Package.internal.198.mjs +0 -2
- package/vendor/Package.internal.199.cjs +0 -4
- package/vendor/Package.internal.199.mjs +0 -2
- package/vendor/Package.internal.200.cjs +0 -4
- package/vendor/Package.internal.200.mjs +0 -2
- package/vendor/Package.internal.201.cjs +0 -4
- package/vendor/Package.internal.201.mjs +0 -2
- package/vendor/Package.internal.202.cjs +0 -4
- package/vendor/Package.internal.202.mjs +0 -2
- package/vendor/Package.internal.60.cjs +0 -27
- package/vendor/Package.internal.60.mjs +0 -27
- package/vendor/Package.internal.61.cjs +0 -4
- package/vendor/Package.internal.61.mjs +0 -2
- package/vendor/Package.internal.62.cjs +0 -200
- package/vendor/Package.internal.62.mjs +0 -200
- package/vendor/Package.internal.63.cjs +0 -4019
- package/vendor/Package.internal.63.mjs +0 -4027
- package/vendor/Package.internal.64.cjs +0 -4
- package/vendor/Package.internal.64.mjs +0 -2
- package/vendor/Package.internal.65.cjs +0 -321
- package/vendor/Package.internal.65.mjs +0 -321
- package/vendor/Package.internal.66.cjs +0 -365
- package/vendor/Package.internal.66.mjs +0 -363
- package/vendor/Package.internal.67.cjs +0 -403
- package/vendor/Package.internal.67.mjs +0 -395
- package/vendor/Package.internal.68.cjs +0 -127
- package/vendor/Package.internal.68.mjs +0 -125
- package/vendor/Package.internal.69.cjs +0 -31
- package/vendor/Package.internal.69.mjs +0 -29
- package/vendor/Package.internal.70.cjs +0 -87
- package/vendor/Package.internal.70.mjs +0 -85
- package/vendor/Package.internal.71.cjs +0 -61
- package/vendor/Package.internal.71.mjs +0 -59
- package/vendor/Package.internal.72.cjs +0 -34
- package/vendor/Package.internal.72.mjs +0 -32
- package/vendor/Package.internal.73.cjs +0 -4
- package/vendor/Package.internal.73.mjs +0 -2
- package/vendor/Package.internal.74.cjs +0 -684
- package/vendor/Package.internal.74.mjs +0 -662
- package/vendor/Package.internal.75.cjs +0 -13896
- package/vendor/Package.internal.75.mjs +0 -13870
- package/vendor/Package.internal.76.cjs +0 -37
- package/vendor/Package.internal.76.mjs +0 -31
- package/vendor/Package.internal.77.cjs +0 -4077
- package/vendor/Package.internal.77.mjs +0 -4077
- package/vendor/Package.internal.78.cjs +0 -1664
- package/vendor/Package.internal.78.mjs +0 -1664
- package/vendor/Package.internal.79.cjs +0 -259
- package/vendor/Package.internal.79.mjs +0 -257
- package/vendor/Package.internal.80.cjs +0 -4964
- package/vendor/Package.internal.80.mjs +0 -4948
- package/vendor/Package.internal.81.cjs +0 -1239
- package/vendor/Package.internal.81.mjs +0 -1225
- package/vendor/Package.internal.82.cjs +0 -340
- package/vendor/Package.internal.82.mjs +0 -326
- package/vendor/Package.internal.83.cjs +0 -34
- package/vendor/Package.internal.83.mjs +0 -32
- package/vendor/Package.internal.84.cjs +0 -88
- package/vendor/Package.internal.84.mjs +0 -88
- package/vendor/Package.internal.85.cjs +0 -55
- package/vendor/Package.internal.85.mjs +0 -55
- package/vendor/Package.internal.86.cjs +0 -15
- package/vendor/Package.internal.86.mjs +0 -13
- package/vendor/Package.internal.87.cjs +0 -1355
- package/vendor/Package.internal.87.mjs +0 -1355
- package/vendor/Package.internal.88.cjs +0 -12
- package/vendor/Package.internal.88.mjs +0 -6
- package/vendor/Package.internal.89.cjs +0 -4
- package/vendor/Package.internal.89.mjs +0 -2
- package/vendor/Package.internal.90.cjs +0 -351
- package/vendor/Package.internal.90.mjs +0 -351
- package/vendor/Package.internal.91.cjs +0 -80
- package/vendor/Package.internal.91.mjs +0 -80
- package/vendor/Package.internal.92.cjs +0 -1445
- package/vendor/Package.internal.92.mjs +0 -1433
- package/vendor/Package.internal.93.cjs +0 -144
- package/vendor/Package.internal.93.mjs +0 -142
- package/vendor/Package.internal.94.cjs +0 -1822
- package/vendor/Package.internal.94.mjs +0 -1814
- package/vendor/Package.internal.95.cjs +0 -130
- package/vendor/Package.internal.95.mjs +0 -124
- package/vendor/Package.internal.96.cjs +0 -208
- package/vendor/Package.internal.96.mjs +0 -208
- package/vendor/Package.internal.97.cjs +0 -1641
- package/vendor/Package.internal.97.mjs +0 -1641
- package/vendor/Package.internal.98.cjs +0 -74
- package/vendor/Package.internal.98.mjs +0 -74
- package/vendor/Package.internal.99.cjs +0 -28
- package/vendor/Package.internal.99.mjs +0 -28
|
@@ -1,2170 +1,26 @@
|
|
|
1
|
-
/* Build Date: Mon Nov 24 2025 18:
|
|
1
|
+
/* Build Date: Mon Nov 24 2025 18:10:51 GMT+0800 (China Standard Time) */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
|
-
const e = require("./Package.internal.
|
|
4
|
+
const e = require("./Package.internal.51.cjs");
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
var t = {};
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
function n(e) {
|
|
11
|
-
if (e && e.__esModule) return e;
|
|
12
|
-
const t = Object.create(null, {
|
|
13
|
-
[Symbol.toStringTag]: {
|
|
14
|
-
value: "Module"
|
|
15
|
-
}
|
|
16
|
-
});
|
|
17
|
-
if (e) {
|
|
18
|
-
for (const r in e) {
|
|
19
|
-
if (r !== "default") {
|
|
20
|
-
const n = Object.getOwnPropertyDescriptor(e, r);
|
|
21
|
-
Object.defineProperty(t, r, n.get ? n : {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: () => e[r]
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
t.default = e;
|
|
29
|
-
return Object.freeze(t);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
const o = n(t);
|
|
33
|
-
|
|
34
|
-
const s = n(r);
|
|
35
|
-
|
|
36
|
-
exports.lib = {};
|
|
37
|
-
|
|
38
|
-
var i = {
|
|
39
|
-
exports: {}
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
var a = class AssertError extends Error {
|
|
43
|
-
name="AssertError";
|
|
44
|
-
constructor(e, t) {
|
|
45
|
-
super(e || "Unknown error");
|
|
46
|
-
if (typeof Error.captureStackTrace === "function") {
|
|
47
|
-
Error.captureStackTrace(this, t);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
var c = function(...e) {
|
|
53
|
-
try {
|
|
54
|
-
return JSON.stringify(...e);
|
|
55
|
-
} catch (e) {
|
|
56
|
-
return "[Cannot display object: " + e.message + "]";
|
|
57
|
-
}
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
i.exports;
|
|
61
|
-
|
|
62
|
-
const A = a;
|
|
63
|
-
|
|
64
|
-
const l = c;
|
|
65
|
-
|
|
66
|
-
const f = i.exports = function(e, ...t) {
|
|
67
|
-
if (e) {
|
|
68
|
-
return;
|
|
69
|
-
}
|
|
70
|
-
if (t.length === 1 && t[0] instanceof Error) {
|
|
71
|
-
throw t[0];
|
|
72
|
-
}
|
|
73
|
-
const r = t.filter(e => e !== "").map(e => typeof e === "string" ? e : e instanceof Error ? e.message : l(e));
|
|
74
|
-
throw new A(r.join(" "), f);
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
var u = i.exports;
|
|
78
|
-
|
|
79
|
-
const E = e.getDefaultExportFromCjs(u);
|
|
80
|
-
|
|
81
|
-
const N = u;
|
|
82
|
-
|
|
83
|
-
const O = {};
|
|
84
|
-
|
|
85
|
-
var S = function(e, t, r) {
|
|
86
|
-
if (t === false || t === null || t === undefined) {
|
|
87
|
-
return e;
|
|
88
|
-
}
|
|
89
|
-
r = r || {};
|
|
90
|
-
if (typeof r === "string") {
|
|
91
|
-
r = {
|
|
92
|
-
separator: r
|
|
93
|
-
};
|
|
94
|
-
}
|
|
95
|
-
const n = Array.isArray(t);
|
|
96
|
-
N(!n || !r.separator, "Separator option is not valid for array-based chain");
|
|
97
|
-
const o = n ? t : t.split(r.separator || ".");
|
|
98
|
-
let s = e;
|
|
99
|
-
for (let e = 0; e < o.length; ++e) {
|
|
100
|
-
let n = o[e];
|
|
101
|
-
const i = r.iterables && O.iterables(s);
|
|
102
|
-
if (Array.isArray(s) || i === "set") {
|
|
103
|
-
const e = Number(n);
|
|
104
|
-
if (Number.isInteger(e)) {
|
|
105
|
-
n = e < 0 ? s.length + e : e;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
if (!s || typeof s === "function" && r.functions === false || !i && s[n] === undefined) {
|
|
109
|
-
N(!r.strict || e + 1 === o.length, "Missing segment", n, "in reach path ", t);
|
|
110
|
-
N(typeof s === "object" || r.functions === true || typeof s !== "function", "Invalid segment", n, "in reach path ", t);
|
|
111
|
-
s = r.default;
|
|
112
|
-
break;
|
|
113
|
-
}
|
|
114
|
-
if (!i) {
|
|
115
|
-
s = s[n];
|
|
116
|
-
} else if (i === "set") {
|
|
117
|
-
s = [ ...s ][n];
|
|
118
|
-
} else {
|
|
119
|
-
s = s.get(n);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
return s;
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
O.iterables = function(e) {
|
|
126
|
-
if (e instanceof Set) {
|
|
127
|
-
return "set";
|
|
128
|
-
}
|
|
129
|
-
if (e instanceof Map) {
|
|
130
|
-
return "map";
|
|
131
|
-
}
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
var I = {
|
|
135
|
-
exports: {}
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
I.exports;
|
|
139
|
-
|
|
140
|
-
(function(e, t) {
|
|
141
|
-
const r = {};
|
|
142
|
-
t = e.exports = {
|
|
143
|
-
array: Array.prototype,
|
|
144
|
-
buffer: Buffer && Buffer.prototype,
|
|
145
|
-
date: Date.prototype,
|
|
146
|
-
error: Error.prototype,
|
|
147
|
-
generic: Object.prototype,
|
|
148
|
-
map: Map.prototype,
|
|
149
|
-
promise: Promise.prototype,
|
|
150
|
-
regex: RegExp.prototype,
|
|
151
|
-
set: Set.prototype,
|
|
152
|
-
url: URL.prototype,
|
|
153
|
-
weakMap: WeakMap.prototype,
|
|
154
|
-
weakSet: WeakSet.prototype
|
|
155
|
-
};
|
|
156
|
-
r.typeMap = new Map([ [ "[object Error]", t.error ], [ "[object Map]", t.map ], [ "[object Promise]", t.promise ], [ "[object Set]", t.set ], [ "[object URL]", t.url ], [ "[object WeakMap]", t.weakMap ], [ "[object WeakSet]", t.weakSet ] ]);
|
|
157
|
-
t.getInternalProto = function(e) {
|
|
158
|
-
if (Array.isArray(e)) {
|
|
159
|
-
return t.array;
|
|
160
|
-
}
|
|
161
|
-
if (Buffer && e instanceof Buffer) {
|
|
162
|
-
return t.buffer;
|
|
163
|
-
}
|
|
164
|
-
if (e instanceof Date) {
|
|
165
|
-
return t.date;
|
|
166
|
-
}
|
|
167
|
-
if (e instanceof RegExp) {
|
|
168
|
-
return t.regex;
|
|
169
|
-
}
|
|
170
|
-
if (e instanceof Error) {
|
|
171
|
-
return t.error;
|
|
172
|
-
}
|
|
173
|
-
const n = Object.prototype.toString.call(e);
|
|
174
|
-
return r.typeMap.get(n) || t.generic;
|
|
175
|
-
};
|
|
176
|
-
})(I, I.exports);
|
|
177
|
-
|
|
178
|
-
var R = I.exports;
|
|
179
|
-
|
|
180
|
-
var p = {};
|
|
181
|
-
|
|
182
|
-
p.keys = function(e, t = {}) {
|
|
183
|
-
return t.symbols !== false ? Reflect.ownKeys(e) : Object.getOwnPropertyNames(e);
|
|
184
|
-
};
|
|
185
|
-
|
|
186
|
-
const T = S;
|
|
187
|
-
|
|
188
|
-
const C = R;
|
|
189
|
-
|
|
190
|
-
const L = p;
|
|
191
|
-
|
|
192
|
-
const M = {
|
|
193
|
-
needsProtoHack: new Set([ C.set, C.map, C.weakSet, C.weakMap ]),
|
|
194
|
-
structuredCloneExists: typeof structuredClone === "function"
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
var d = M.clone = function(e, t = {}, r = null) {
|
|
198
|
-
if (typeof e !== "object" || e === null) {
|
|
199
|
-
return e;
|
|
200
|
-
}
|
|
201
|
-
let n = M.clone;
|
|
202
|
-
let o = r;
|
|
203
|
-
if (t.shallow) {
|
|
204
|
-
if (t.shallow !== true) {
|
|
205
|
-
return M.cloneWithShallow(e, t);
|
|
206
|
-
}
|
|
207
|
-
n = e => e;
|
|
208
|
-
} else if (o) {
|
|
209
|
-
const t = o.get(e);
|
|
210
|
-
if (t) {
|
|
211
|
-
return t;
|
|
212
|
-
}
|
|
213
|
-
} else {
|
|
214
|
-
o = new Map;
|
|
215
|
-
}
|
|
216
|
-
const s = C.getInternalProto(e);
|
|
217
|
-
switch (s) {
|
|
218
|
-
case C.buffer:
|
|
219
|
-
return Buffer?.from(e);
|
|
220
|
-
|
|
221
|
-
case C.date:
|
|
222
|
-
return new Date(e.getTime());
|
|
223
|
-
|
|
224
|
-
case C.regex:
|
|
225
|
-
case C.url:
|
|
226
|
-
return new s.constructor(e);
|
|
227
|
-
}
|
|
228
|
-
const i = M.base(e, s, t);
|
|
229
|
-
if (i === e) {
|
|
230
|
-
return e;
|
|
231
|
-
}
|
|
232
|
-
if (o) {
|
|
233
|
-
o.set(e, i);
|
|
234
|
-
}
|
|
235
|
-
if (s === C.set) {
|
|
236
|
-
for (const r of e) {
|
|
237
|
-
i.add(n(r, t, o));
|
|
238
|
-
}
|
|
239
|
-
} else if (s === C.map) {
|
|
240
|
-
for (const [r, s] of e) {
|
|
241
|
-
i.set(r, n(s, t, o));
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
const a = L.keys(e, t);
|
|
245
|
-
for (const r of a) {
|
|
246
|
-
if (r === "__proto__") {
|
|
247
|
-
continue;
|
|
248
|
-
}
|
|
249
|
-
if (s === C.array && r === "length") {
|
|
250
|
-
i.length = e.length;
|
|
251
|
-
continue;
|
|
252
|
-
}
|
|
253
|
-
if (M.structuredCloneExists && s === C.error && r === "stack") {
|
|
254
|
-
continue;
|
|
255
|
-
}
|
|
256
|
-
const a = Object.getOwnPropertyDescriptor(e, r);
|
|
257
|
-
if (a) {
|
|
258
|
-
if (a.get || a.set) {
|
|
259
|
-
Object.defineProperty(i, r, a);
|
|
260
|
-
} else if (a.enumerable) {
|
|
261
|
-
i[r] = n(e[r], t, o);
|
|
262
|
-
} else {
|
|
263
|
-
Object.defineProperty(i, r, {
|
|
264
|
-
enumerable: false,
|
|
265
|
-
writable: true,
|
|
266
|
-
configurable: true,
|
|
267
|
-
value: n(e[r], t, o)
|
|
268
|
-
});
|
|
269
|
-
}
|
|
270
|
-
} else {
|
|
271
|
-
Object.defineProperty(i, r, {
|
|
272
|
-
enumerable: true,
|
|
273
|
-
writable: true,
|
|
274
|
-
configurable: true,
|
|
275
|
-
value: n(e[r], t, o)
|
|
276
|
-
});
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
return i;
|
|
280
|
-
};
|
|
281
|
-
|
|
282
|
-
M.cloneWithShallow = function(e, t) {
|
|
283
|
-
const r = t.shallow;
|
|
284
|
-
t = Object.assign({}, t);
|
|
285
|
-
t.shallow = false;
|
|
286
|
-
const n = new Map;
|
|
287
|
-
for (const t of r) {
|
|
288
|
-
const r = T(e, t);
|
|
289
|
-
if (typeof r === "object" || typeof r === "function") {
|
|
290
|
-
n.set(r, r);
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
return M.clone(e, t, n);
|
|
294
|
-
};
|
|
295
|
-
|
|
296
|
-
M.base = function(e, t, r) {
|
|
297
|
-
if (r.prototype === false) {
|
|
298
|
-
if (M.needsProtoHack.has(t)) {
|
|
299
|
-
return new t.constructor;
|
|
300
|
-
}
|
|
301
|
-
return t === C.array ? [] : {};
|
|
302
|
-
}
|
|
303
|
-
const n = Object.getPrototypeOf(e);
|
|
304
|
-
if (n && n.isImmutable) {
|
|
305
|
-
return e;
|
|
306
|
-
}
|
|
307
|
-
if (t === C.array) {
|
|
308
|
-
const e = [];
|
|
309
|
-
if (n !== t) {
|
|
310
|
-
Object.setPrototypeOf(e, n);
|
|
311
|
-
}
|
|
312
|
-
return e;
|
|
313
|
-
} else if (t === C.error && M.structuredCloneExists && (n === t || Error.isPrototypeOf(n.constructor))) {
|
|
314
|
-
const t = structuredClone(e);
|
|
315
|
-
if (Object.getPrototypeOf(t) !== n) {
|
|
316
|
-
Object.setPrototypeOf(t, n);
|
|
317
|
-
}
|
|
318
|
-
return t;
|
|
319
|
-
}
|
|
320
|
-
if (M.needsProtoHack.has(t)) {
|
|
321
|
-
const e = new n.constructor;
|
|
322
|
-
if (n !== t) {
|
|
323
|
-
Object.setPrototypeOf(e, n);
|
|
324
|
-
}
|
|
325
|
-
return e;
|
|
326
|
-
}
|
|
327
|
-
return Object.create(n);
|
|
328
|
-
};
|
|
329
|
-
|
|
330
|
-
const D = u;
|
|
331
|
-
|
|
332
|
-
const B = d;
|
|
333
|
-
|
|
334
|
-
const h = p;
|
|
335
|
-
|
|
336
|
-
const G = {};
|
|
337
|
-
|
|
338
|
-
var m = G.merge = function(e, t, r) {
|
|
339
|
-
D(e && typeof e === "object", "Invalid target value: must be an object");
|
|
340
|
-
D(t === null || t === undefined || typeof t === "object", "Invalid source value: must be null, undefined, or an object");
|
|
341
|
-
if (!t) {
|
|
342
|
-
return e;
|
|
343
|
-
}
|
|
344
|
-
r = Object.assign({
|
|
345
|
-
nullOverride: true,
|
|
346
|
-
mergeArrays: true
|
|
347
|
-
}, r);
|
|
348
|
-
if (Array.isArray(t)) {
|
|
349
|
-
D(Array.isArray(e), "Cannot merge array onto an object");
|
|
350
|
-
if (!r.mergeArrays) {
|
|
351
|
-
e.length = 0;
|
|
352
|
-
}
|
|
353
|
-
for (let n = 0; n < t.length; ++n) {
|
|
354
|
-
e.push(B(t[n], {
|
|
355
|
-
symbols: r.symbols
|
|
356
|
-
}));
|
|
357
|
-
}
|
|
358
|
-
return e;
|
|
359
|
-
}
|
|
360
|
-
const n = h.keys(t, r);
|
|
361
|
-
for (let o = 0; o < n.length; ++o) {
|
|
362
|
-
const s = n[o];
|
|
363
|
-
if (s === "__proto__" || !Object.prototype.propertyIsEnumerable.call(t, s)) {
|
|
364
|
-
continue;
|
|
365
|
-
}
|
|
366
|
-
const i = t[s];
|
|
367
|
-
if (i && typeof i === "object") {
|
|
368
|
-
if (e[s] === i) {
|
|
369
|
-
continue;
|
|
370
|
-
}
|
|
371
|
-
if (!e[s] || typeof e[s] !== "object" || Array.isArray(e[s]) !== Array.isArray(i) || i instanceof Date || Buffer && Buffer.isBuffer(i) || i instanceof RegExp) {
|
|
372
|
-
e[s] = B(i, {
|
|
373
|
-
symbols: r.symbols
|
|
374
|
-
});
|
|
375
|
-
} else {
|
|
376
|
-
G.merge(e[s], i, r);
|
|
377
|
-
}
|
|
378
|
-
} else {
|
|
379
|
-
if (i !== null && i !== undefined) {
|
|
380
|
-
e[s] = i;
|
|
381
|
-
} else if (r.nullOverride) {
|
|
382
|
-
e[s] = i;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
return e;
|
|
387
|
-
};
|
|
388
|
-
|
|
389
|
-
const y = u;
|
|
390
|
-
|
|
391
|
-
const P = d;
|
|
392
|
-
|
|
393
|
-
const g = m;
|
|
394
|
-
|
|
395
|
-
const U = S;
|
|
396
|
-
|
|
397
|
-
const X = {};
|
|
398
|
-
|
|
399
|
-
var b = function(e, t, r = {}) {
|
|
400
|
-
y(e && typeof e === "object", "Invalid defaults value: must be an object");
|
|
401
|
-
y(!t || t === true || typeof t === "object", "Invalid source value: must be true, falsy or an object");
|
|
402
|
-
y(typeof r === "object", "Invalid options: must be an object");
|
|
403
|
-
if (!t) {
|
|
404
|
-
return null;
|
|
405
|
-
}
|
|
406
|
-
if (r.shallow) {
|
|
407
|
-
return X.applyToDefaultsWithShallow(e, t, r);
|
|
408
|
-
}
|
|
409
|
-
const n = P(e);
|
|
410
|
-
if (t === true) {
|
|
411
|
-
return n;
|
|
412
|
-
}
|
|
413
|
-
const o = r.nullOverride !== undefined ? r.nullOverride : false;
|
|
414
|
-
return g(n, t, {
|
|
415
|
-
nullOverride: o,
|
|
416
|
-
mergeArrays: false
|
|
417
|
-
});
|
|
418
|
-
};
|
|
419
|
-
|
|
420
|
-
X.applyToDefaultsWithShallow = function(e, t, r) {
|
|
421
|
-
const n = r.shallow;
|
|
422
|
-
y(Array.isArray(n), "Invalid keys");
|
|
423
|
-
const o = new Map;
|
|
424
|
-
const s = t === true ? null : new Set;
|
|
425
|
-
for (let r of n) {
|
|
426
|
-
r = Array.isArray(r) ? r : r.split(".");
|
|
427
|
-
const n = U(e, r);
|
|
428
|
-
if (n && typeof n === "object") {
|
|
429
|
-
o.set(n, s && U(t, r) || n);
|
|
430
|
-
} else if (s) {
|
|
431
|
-
s.add(r);
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
const i = P(e, {}, o);
|
|
435
|
-
if (!s) {
|
|
436
|
-
return i;
|
|
437
|
-
}
|
|
438
|
-
for (const e of s) {
|
|
439
|
-
X.reachCopy(i, t, e);
|
|
440
|
-
}
|
|
441
|
-
const a = r.nullOverride !== undefined ? r.nullOverride : false;
|
|
442
|
-
return g(i, t, {
|
|
443
|
-
nullOverride: a,
|
|
444
|
-
mergeArrays: false
|
|
445
|
-
});
|
|
446
|
-
};
|
|
447
|
-
|
|
448
|
-
X.reachCopy = function(e, t, r) {
|
|
449
|
-
for (const e of r) {
|
|
450
|
-
if (!(e in t)) {
|
|
451
|
-
return;
|
|
452
|
-
}
|
|
453
|
-
const r = t[e];
|
|
454
|
-
if (typeof r !== "object" || r === null) {
|
|
455
|
-
return;
|
|
456
|
-
}
|
|
457
|
-
t = r;
|
|
458
|
-
}
|
|
459
|
-
const n = t;
|
|
460
|
-
let o = e;
|
|
461
|
-
for (let e = 0; e < r.length - 1; ++e) {
|
|
462
|
-
const t = r[e];
|
|
463
|
-
if (typeof o[t] !== "object") {
|
|
464
|
-
o[t] = {};
|
|
465
|
-
}
|
|
466
|
-
o = o[t];
|
|
467
|
-
}
|
|
468
|
-
o[r[r.length - 1]] = n;
|
|
469
|
-
};
|
|
470
|
-
|
|
471
|
-
const H = {};
|
|
472
|
-
|
|
473
|
-
var F = H.Bench = class {
|
|
474
|
-
constructor() {
|
|
475
|
-
this.ts = 0;
|
|
476
|
-
this.reset();
|
|
477
|
-
}
|
|
478
|
-
reset() {
|
|
479
|
-
this.ts = H.Bench.now();
|
|
480
|
-
}
|
|
481
|
-
elapsed() {
|
|
482
|
-
return H.Bench.now() - this.ts;
|
|
483
|
-
}
|
|
484
|
-
static now() {
|
|
485
|
-
const e = process.hrtime();
|
|
486
|
-
return e[0] * 1e3 + e[1] / 1e6;
|
|
487
|
-
}
|
|
488
|
-
};
|
|
489
|
-
|
|
490
|
-
var v = function() {};
|
|
491
|
-
|
|
492
|
-
const w = v;
|
|
493
|
-
|
|
494
|
-
var K = function() {
|
|
495
|
-
return new Promise(w);
|
|
496
|
-
};
|
|
497
|
-
|
|
498
|
-
const Y = R;
|
|
499
|
-
|
|
500
|
-
const x = {
|
|
501
|
-
mismatched: null
|
|
502
|
-
};
|
|
503
|
-
|
|
504
|
-
var _ = function(e, t, r) {
|
|
505
|
-
r = Object.assign({
|
|
506
|
-
prototype: true
|
|
507
|
-
}, r);
|
|
508
|
-
return !!x.isDeepEqual(e, t, r, []);
|
|
509
|
-
};
|
|
510
|
-
|
|
511
|
-
x.isDeepEqual = function(e, t, r, n) {
|
|
512
|
-
if (e === t) {
|
|
513
|
-
return e !== 0 || 1 / e === 1 / t;
|
|
514
|
-
}
|
|
515
|
-
const o = typeof e;
|
|
516
|
-
if (o !== typeof t) {
|
|
517
|
-
return false;
|
|
518
|
-
}
|
|
519
|
-
if (e === null || t === null) {
|
|
520
|
-
return false;
|
|
521
|
-
}
|
|
522
|
-
if (o === "function") {
|
|
523
|
-
if (!r.deepFunction || e.toString() !== t.toString()) {
|
|
524
|
-
return false;
|
|
525
|
-
}
|
|
526
|
-
} else if (o !== "object") {
|
|
527
|
-
return e !== e && t !== t;
|
|
528
|
-
}
|
|
529
|
-
const s = x.getSharedType(e, t, !!r.prototype);
|
|
530
|
-
switch (s) {
|
|
531
|
-
case Y.buffer:
|
|
532
|
-
return Buffer && Buffer.prototype.equals.call(e, t);
|
|
533
|
-
|
|
534
|
-
case Y.promise:
|
|
535
|
-
return e === t;
|
|
536
|
-
|
|
537
|
-
case Y.regex:
|
|
538
|
-
case Y.url:
|
|
539
|
-
return e.toString() === t.toString();
|
|
540
|
-
|
|
541
|
-
case x.mismatched:
|
|
542
|
-
return false;
|
|
543
|
-
}
|
|
544
|
-
for (let r = n.length - 1; r >= 0; --r) {
|
|
545
|
-
if (n[r].isSame(e, t)) {
|
|
546
|
-
return true;
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
n.push(new x.SeenEntry(e, t));
|
|
550
|
-
try {
|
|
551
|
-
return !!x.isDeepEqualObj(s, e, t, r, n);
|
|
552
|
-
} finally {
|
|
553
|
-
n.pop();
|
|
554
|
-
}
|
|
555
|
-
};
|
|
556
|
-
|
|
557
|
-
x.getSharedType = function(e, t, r) {
|
|
558
|
-
if (r) {
|
|
559
|
-
if (Object.getPrototypeOf(e) !== Object.getPrototypeOf(t)) {
|
|
560
|
-
return x.mismatched;
|
|
561
|
-
}
|
|
562
|
-
return Y.getInternalProto(e);
|
|
563
|
-
}
|
|
564
|
-
const n = Y.getInternalProto(e);
|
|
565
|
-
if (n !== Y.getInternalProto(t)) {
|
|
566
|
-
return x.mismatched;
|
|
567
|
-
}
|
|
568
|
-
return n;
|
|
569
|
-
};
|
|
570
|
-
|
|
571
|
-
x.valueOf = function(e) {
|
|
572
|
-
const t = e.valueOf;
|
|
573
|
-
if (t === undefined) {
|
|
574
|
-
return e;
|
|
575
|
-
}
|
|
576
|
-
try {
|
|
577
|
-
return t.call(e);
|
|
578
|
-
} catch (e) {
|
|
579
|
-
return e;
|
|
580
|
-
}
|
|
581
|
-
};
|
|
582
|
-
|
|
583
|
-
x.hasOwnEnumerableProperty = function(e, t) {
|
|
584
|
-
return Object.prototype.propertyIsEnumerable.call(e, t);
|
|
585
|
-
};
|
|
586
|
-
|
|
587
|
-
x.isSetSimpleEqual = function(e, t) {
|
|
588
|
-
for (const r of Set.prototype.values.call(e)) {
|
|
589
|
-
if (!Set.prototype.has.call(t, r)) {
|
|
590
|
-
return false;
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
return true;
|
|
594
|
-
};
|
|
595
|
-
|
|
596
|
-
x.isDeepEqualObj = function(e, t, r, n, o) {
|
|
597
|
-
const {isDeepEqual: s, valueOf: i, hasOwnEnumerableProperty: a} = x;
|
|
598
|
-
const {keys: c, getOwnPropertySymbols: A} = Object;
|
|
599
|
-
if (e === Y.array) {
|
|
600
|
-
if (n.part) {
|
|
601
|
-
for (const e of t) {
|
|
602
|
-
for (const t of r) {
|
|
603
|
-
if (s(e, t, n, o)) {
|
|
604
|
-
return true;
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
} else {
|
|
609
|
-
if (t.length !== r.length) {
|
|
610
|
-
return false;
|
|
611
|
-
}
|
|
612
|
-
for (let e = 0; e < t.length; ++e) {
|
|
613
|
-
if (!s(t[e], r[e], n, o)) {
|
|
614
|
-
return false;
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
return true;
|
|
618
|
-
}
|
|
619
|
-
} else if (e === Y.set) {
|
|
620
|
-
if (t.size !== r.size) {
|
|
621
|
-
return false;
|
|
622
|
-
}
|
|
623
|
-
if (!x.isSetSimpleEqual(t, r)) {
|
|
624
|
-
const e = new Set(Set.prototype.values.call(r));
|
|
625
|
-
for (const r of Set.prototype.values.call(t)) {
|
|
626
|
-
if (e.delete(r)) {
|
|
627
|
-
continue;
|
|
628
|
-
}
|
|
629
|
-
let t = false;
|
|
630
|
-
for (const i of e) {
|
|
631
|
-
if (s(r, i, n, o)) {
|
|
632
|
-
e.delete(i);
|
|
633
|
-
t = true;
|
|
634
|
-
break;
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
if (!t) {
|
|
638
|
-
return false;
|
|
639
|
-
}
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
} else if (e === Y.map) {
|
|
643
|
-
if (t.size !== r.size) {
|
|
644
|
-
return false;
|
|
645
|
-
}
|
|
646
|
-
for (const [e, i] of Map.prototype.entries.call(t)) {
|
|
647
|
-
if (i === undefined && !Map.prototype.has.call(r, e)) {
|
|
648
|
-
return false;
|
|
649
|
-
}
|
|
650
|
-
if (!s(i, Map.prototype.get.call(r, e), n, o)) {
|
|
651
|
-
return false;
|
|
652
|
-
}
|
|
653
|
-
}
|
|
654
|
-
} else if (e === Y.error) {
|
|
655
|
-
if (t.name !== r.name || t.message !== r.message) {
|
|
656
|
-
return false;
|
|
657
|
-
}
|
|
658
|
-
}
|
|
659
|
-
const l = i(t);
|
|
660
|
-
const f = i(r);
|
|
661
|
-
if ((t !== l || r !== f) && !s(l, f, n, o)) {
|
|
662
|
-
return false;
|
|
663
|
-
}
|
|
664
|
-
const u = c(t);
|
|
665
|
-
if (!n.part && u.length !== c(r).length && !n.skip) {
|
|
666
|
-
return false;
|
|
667
|
-
}
|
|
668
|
-
let E = 0;
|
|
669
|
-
for (const e of u) {
|
|
670
|
-
if (n.skip && n.skip.includes(e)) {
|
|
671
|
-
if (r[e] === undefined) {
|
|
672
|
-
++E;
|
|
673
|
-
}
|
|
674
|
-
continue;
|
|
675
|
-
}
|
|
676
|
-
if (!a(r, e)) {
|
|
677
|
-
return false;
|
|
678
|
-
}
|
|
679
|
-
if (!s(t[e], r[e], n, o)) {
|
|
680
|
-
return false;
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
if (!n.part && u.length - E !== c(r).length) {
|
|
684
|
-
return false;
|
|
685
|
-
}
|
|
686
|
-
if (n.symbols !== false) {
|
|
687
|
-
const e = A(t);
|
|
688
|
-
const i = new Set(A(r));
|
|
689
|
-
for (const c of e) {
|
|
690
|
-
if (!n.skip?.includes(c)) {
|
|
691
|
-
if (a(t, c)) {
|
|
692
|
-
if (!a(r, c)) {
|
|
693
|
-
return false;
|
|
694
|
-
}
|
|
695
|
-
if (!s(t[c], r[c], n, o)) {
|
|
696
|
-
return false;
|
|
697
|
-
}
|
|
698
|
-
} else if (a(r, c)) {
|
|
699
|
-
return false;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
i.delete(c);
|
|
703
|
-
}
|
|
704
|
-
for (const e of i) {
|
|
705
|
-
if (a(r, e)) {
|
|
706
|
-
return false;
|
|
707
|
-
}
|
|
708
|
-
}
|
|
709
|
-
}
|
|
710
|
-
return true;
|
|
711
|
-
};
|
|
712
|
-
|
|
713
|
-
x.SeenEntry = class {
|
|
714
|
-
constructor(e, t) {
|
|
715
|
-
this.obj = e;
|
|
716
|
-
this.ref = t;
|
|
717
|
-
}
|
|
718
|
-
isSame(e, t) {
|
|
719
|
-
return this.obj === e && this.ref === t;
|
|
720
|
-
}
|
|
721
|
-
};
|
|
722
|
-
|
|
723
|
-
var V = function(e) {
|
|
724
|
-
return e.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, "\\$&");
|
|
725
|
-
};
|
|
726
|
-
|
|
727
|
-
const W = e.getDefaultExportFromCjs(V);
|
|
728
|
-
|
|
729
|
-
const j = u;
|
|
730
|
-
|
|
731
|
-
const Z = _;
|
|
732
|
-
|
|
733
|
-
const J = V;
|
|
734
|
-
|
|
735
|
-
const k = p;
|
|
736
|
-
|
|
737
|
-
const Q = {};
|
|
738
|
-
|
|
739
|
-
var $ = function(e, t, r = {}) {
|
|
740
|
-
if (typeof t !== "object") {
|
|
741
|
-
t = [ t ];
|
|
742
|
-
}
|
|
743
|
-
j(!Array.isArray(t) || t.length, "Values array cannot be empty");
|
|
744
|
-
if (typeof e === "string") {
|
|
745
|
-
return Q.string(e, t, r);
|
|
746
|
-
}
|
|
747
|
-
if (Array.isArray(e)) {
|
|
748
|
-
return Q.array(e, t, r);
|
|
749
|
-
}
|
|
750
|
-
j(typeof e === "object", "Reference must be string or an object");
|
|
751
|
-
return Q.object(e, t, r);
|
|
752
|
-
};
|
|
753
|
-
|
|
754
|
-
Q.array = function(e, t, r) {
|
|
755
|
-
if (!Array.isArray(t)) {
|
|
756
|
-
t = [ t ];
|
|
757
|
-
}
|
|
758
|
-
if (!e.length) {
|
|
759
|
-
return false;
|
|
760
|
-
}
|
|
761
|
-
if (r.only && r.once && e.length !== t.length) {
|
|
762
|
-
return false;
|
|
763
|
-
}
|
|
764
|
-
let n;
|
|
765
|
-
const o = new Map;
|
|
766
|
-
for (const e of t) {
|
|
767
|
-
if (!r.deep || !e || typeof e !== "object") {
|
|
768
|
-
const t = o.get(e);
|
|
769
|
-
if (t) {
|
|
770
|
-
++t.allowed;
|
|
771
|
-
} else {
|
|
772
|
-
o.set(e, {
|
|
773
|
-
allowed: 1,
|
|
774
|
-
hits: 0
|
|
775
|
-
});
|
|
776
|
-
}
|
|
777
|
-
} else {
|
|
778
|
-
n = n ?? Q.compare(r);
|
|
779
|
-
let t = false;
|
|
780
|
-
for (const [r, s] of o.entries()) {
|
|
781
|
-
if (n(r, e)) {
|
|
782
|
-
++s.allowed;
|
|
783
|
-
t = true;
|
|
784
|
-
break;
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
if (!t) {
|
|
788
|
-
o.set(e, {
|
|
789
|
-
allowed: 1,
|
|
790
|
-
hits: 0
|
|
791
|
-
});
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
}
|
|
795
|
-
let s = 0;
|
|
796
|
-
for (const t of e) {
|
|
797
|
-
let e;
|
|
798
|
-
if (!r.deep || !t || typeof t !== "object") {
|
|
799
|
-
e = o.get(t);
|
|
800
|
-
} else {
|
|
801
|
-
n = n ?? Q.compare(r);
|
|
802
|
-
for (const [r, s] of o.entries()) {
|
|
803
|
-
if (n(r, t)) {
|
|
804
|
-
e = s;
|
|
805
|
-
break;
|
|
806
|
-
}
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
if (e) {
|
|
810
|
-
++e.hits;
|
|
811
|
-
++s;
|
|
812
|
-
if (r.once && e.hits > e.allowed) {
|
|
813
|
-
return false;
|
|
814
|
-
}
|
|
815
|
-
}
|
|
816
|
-
}
|
|
817
|
-
if (r.only && s !== e.length) {
|
|
818
|
-
return false;
|
|
819
|
-
}
|
|
820
|
-
for (const e of o.values()) {
|
|
821
|
-
if (e.hits === e.allowed) {
|
|
822
|
-
continue;
|
|
823
|
-
}
|
|
824
|
-
if (e.hits < e.allowed && !r.part) {
|
|
825
|
-
return false;
|
|
826
|
-
}
|
|
827
|
-
}
|
|
828
|
-
return !!s;
|
|
829
|
-
};
|
|
830
|
-
|
|
831
|
-
Q.object = function(e, t, r) {
|
|
832
|
-
j(r.once === undefined, "Cannot use option once with object");
|
|
833
|
-
const n = k.keys(e, r);
|
|
834
|
-
if (!n.length) {
|
|
835
|
-
return false;
|
|
836
|
-
}
|
|
837
|
-
if (Array.isArray(t)) {
|
|
838
|
-
return Q.array(n, t, r);
|
|
839
|
-
}
|
|
840
|
-
const o = Object.getOwnPropertySymbols(t).filter(e => t.propertyIsEnumerable(e));
|
|
841
|
-
const s = [ ...Object.keys(t), ...o ];
|
|
842
|
-
const i = Q.compare(r);
|
|
843
|
-
const a = new Set(s);
|
|
844
|
-
for (const o of n) {
|
|
845
|
-
if (!a.has(o)) {
|
|
846
|
-
if (r.only) {
|
|
847
|
-
return false;
|
|
848
|
-
}
|
|
849
|
-
continue;
|
|
850
|
-
}
|
|
851
|
-
if (!i(t[o], e[o])) {
|
|
852
|
-
return false;
|
|
853
|
-
}
|
|
854
|
-
a.delete(o);
|
|
855
|
-
}
|
|
856
|
-
if (a.size) {
|
|
857
|
-
return r.part ? a.size < s.length : false;
|
|
858
|
-
}
|
|
859
|
-
return true;
|
|
860
|
-
};
|
|
861
|
-
|
|
862
|
-
Q.string = function(e, t, r) {
|
|
863
|
-
if (e === "") {
|
|
864
|
-
return t.length === 1 && t[0] === "" || !r.once && !t.some(e => e !== "");
|
|
865
|
-
}
|
|
866
|
-
const n = new Map;
|
|
867
|
-
const o = [];
|
|
868
|
-
for (const e of t) {
|
|
869
|
-
j(typeof e === "string", "Cannot compare string reference to non-string value");
|
|
870
|
-
if (e) {
|
|
871
|
-
const t = n.get(e);
|
|
872
|
-
if (t) {
|
|
873
|
-
++t.allowed;
|
|
874
|
-
} else {
|
|
875
|
-
n.set(e, {
|
|
876
|
-
allowed: 1,
|
|
877
|
-
hits: 0
|
|
878
|
-
});
|
|
879
|
-
o.push(J(e));
|
|
880
|
-
}
|
|
881
|
-
} else if (r.once || r.only) {
|
|
882
|
-
return false;
|
|
883
|
-
}
|
|
884
|
-
}
|
|
885
|
-
if (!o.length) {
|
|
886
|
-
return true;
|
|
887
|
-
}
|
|
888
|
-
const s = new RegExp(`(${o.join("|")})`, "g");
|
|
889
|
-
const i = e.replace(s, (e, t) => {
|
|
890
|
-
++n.get(t).hits;
|
|
891
|
-
return "";
|
|
892
|
-
});
|
|
893
|
-
if (r.only && i) {
|
|
894
|
-
return false;
|
|
895
|
-
}
|
|
896
|
-
let a = false;
|
|
897
|
-
for (const e of n.values()) {
|
|
898
|
-
if (e.hits) {
|
|
899
|
-
a = true;
|
|
900
|
-
}
|
|
901
|
-
if (e.hits === e.allowed) {
|
|
902
|
-
continue;
|
|
903
|
-
}
|
|
904
|
-
if (e.hits < e.allowed && !r.part) {
|
|
905
|
-
return false;
|
|
906
|
-
}
|
|
907
|
-
if (r.once) {
|
|
908
|
-
return false;
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
return !!a;
|
|
912
|
-
};
|
|
913
|
-
|
|
914
|
-
Q.compare = function(e) {
|
|
915
|
-
if (!e.deep) {
|
|
916
|
-
return Q.shallow;
|
|
917
|
-
}
|
|
918
|
-
const t = e.only !== undefined;
|
|
919
|
-
const r = e.part !== undefined;
|
|
920
|
-
const n = {
|
|
921
|
-
prototype: t ? e.only : r ? !e.part : false,
|
|
922
|
-
part: t ? !e.only : r ? e.part : false
|
|
923
|
-
};
|
|
924
|
-
return (e, t) => Z(e, t, n);
|
|
925
|
-
};
|
|
926
|
-
|
|
927
|
-
Q.shallow = function(e, t) {
|
|
928
|
-
return e === t;
|
|
929
|
-
};
|
|
930
|
-
|
|
931
|
-
const q = u;
|
|
932
|
-
|
|
933
|
-
var z = function(e) {
|
|
934
|
-
q(/^[ \w\!#\$%&'\(\)\*\+,\-\.\/\:;<\=>\?@\[\]\^`\{\|\}~\"\\]*$/.test(e), "Bad attribute value (" + e + ")");
|
|
935
|
-
return e.replace(/\\/g, "\\\\").replace(/\"/g, '\\"');
|
|
936
|
-
};
|
|
937
|
-
|
|
938
|
-
const ee = {};
|
|
939
|
-
|
|
940
|
-
var te = function(e) {
|
|
941
|
-
if (!e) {
|
|
942
|
-
return "";
|
|
943
|
-
}
|
|
944
|
-
let t = "";
|
|
945
|
-
for (let r = 0; r < e.length; ++r) {
|
|
946
|
-
const n = e.charCodeAt(r);
|
|
947
|
-
if (ee.isSafe(n)) {
|
|
948
|
-
t += e[r];
|
|
949
|
-
} else {
|
|
950
|
-
t += ee.escapeHtmlChar(n);
|
|
951
|
-
}
|
|
952
|
-
}
|
|
953
|
-
return t;
|
|
954
|
-
};
|
|
955
|
-
|
|
956
|
-
ee.escapeHtmlChar = function(e) {
|
|
957
|
-
const t = ee.namedHtml.get(e);
|
|
958
|
-
if (t) {
|
|
959
|
-
return t;
|
|
960
|
-
}
|
|
961
|
-
if (e >= 256) {
|
|
962
|
-
return "&#" + e + ";";
|
|
963
|
-
}
|
|
964
|
-
const r = e.toString(16).padStart(2, "0");
|
|
965
|
-
return `&#x${r};`;
|
|
966
|
-
};
|
|
967
|
-
|
|
968
|
-
ee.isSafe = function(e) {
|
|
969
|
-
return ee.safeCharCodes.has(e);
|
|
970
|
-
};
|
|
971
|
-
|
|
972
|
-
ee.namedHtml = new Map([ [ 38, "&" ], [ 60, "<" ], [ 62, ">" ], [ 34, """ ], [ 160, " " ], [ 162, "¢" ], [ 163, "£" ], [ 164, "¤" ], [ 169, "©" ], [ 174, "®" ] ]);
|
|
973
|
-
|
|
974
|
-
ee.safeCharCodes = function() {
|
|
975
|
-
const e = new Set;
|
|
976
|
-
for (let t = 32; t < 123; ++t) {
|
|
977
|
-
if (t >= 97 || t >= 65 && t <= 90 || t >= 48 && t <= 57 || t === 32 || t === 46 || t === 44 || t === 45 || t === 58 || t === 95) {
|
|
978
|
-
e.add(t);
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
return e;
|
|
982
|
-
}();
|
|
983
|
-
|
|
984
|
-
const re = {};
|
|
985
|
-
|
|
986
|
-
var ne = function(e) {
|
|
987
|
-
if (!e) {
|
|
988
|
-
return "";
|
|
989
|
-
}
|
|
990
|
-
return e.replace(/[<>&\u2028\u2029]/g, re.escape);
|
|
991
|
-
};
|
|
992
|
-
|
|
993
|
-
re.escape = function(e) {
|
|
994
|
-
return re.replacements.get(e);
|
|
995
|
-
};
|
|
996
|
-
|
|
997
|
-
re.replacements = new Map([ [ "<", "\\u003c" ], [ ">", "\\u003e" ], [ "&", "\\u0026" ], [ "\u2028", "\\u2028" ], [ "\u2029", "\\u2029" ] ]);
|
|
998
|
-
|
|
999
|
-
const oe = {};
|
|
1000
|
-
|
|
1001
|
-
var se = oe.flatten = function(e, t) {
|
|
1002
|
-
const r = t || [];
|
|
1003
|
-
for (const t of e) {
|
|
1004
|
-
if (Array.isArray(t)) {
|
|
1005
|
-
oe.flatten(t, r);
|
|
1006
|
-
} else {
|
|
1007
|
-
r.push(t);
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
return r;
|
|
1011
|
-
};
|
|
1012
|
-
|
|
1013
|
-
const ie = {};
|
|
1014
|
-
|
|
1015
|
-
var ae = function(e, t, r = {}) {
|
|
1016
|
-
if (!e || !t) {
|
|
1017
|
-
return r.first ? null : [];
|
|
1018
|
-
}
|
|
1019
|
-
const n = [];
|
|
1020
|
-
const o = Array.isArray(e) ? new Set(e) : e;
|
|
1021
|
-
const s = new Set;
|
|
1022
|
-
for (const e of t) {
|
|
1023
|
-
if (ie.has(o, e) && !s.has(e)) {
|
|
1024
|
-
if (r.first) {
|
|
1025
|
-
return e;
|
|
1026
|
-
}
|
|
1027
|
-
n.push(e);
|
|
1028
|
-
s.add(e);
|
|
1029
|
-
}
|
|
1030
|
-
}
|
|
1031
|
-
return r.first ? null : n;
|
|
1032
|
-
};
|
|
1033
|
-
|
|
1034
|
-
ie.has = function(e, t) {
|
|
1035
|
-
if (typeof e.has === "function") {
|
|
1036
|
-
return e.has(t);
|
|
1037
|
-
}
|
|
1038
|
-
return e[t] !== undefined;
|
|
1039
|
-
};
|
|
1040
|
-
|
|
1041
|
-
var ce = function(e) {
|
|
1042
|
-
return typeof e?.then === "function";
|
|
1043
|
-
};
|
|
1044
|
-
|
|
1045
|
-
const Ae = {
|
|
1046
|
-
wrapped: Symbol("wrapped")
|
|
1047
|
-
};
|
|
1048
|
-
|
|
1049
|
-
var le = function(e) {
|
|
1050
|
-
if (e[Ae.wrapped]) {
|
|
1051
|
-
return e;
|
|
1052
|
-
}
|
|
1053
|
-
let t = false;
|
|
1054
|
-
const r = function(...r) {
|
|
1055
|
-
if (!t) {
|
|
1056
|
-
t = true;
|
|
1057
|
-
e(...r);
|
|
1058
|
-
}
|
|
1059
|
-
};
|
|
1060
|
-
r[Ae.wrapped] = true;
|
|
1061
|
-
return r;
|
|
1062
|
-
};
|
|
1063
|
-
|
|
1064
|
-
const fe = S;
|
|
1065
|
-
|
|
1066
|
-
var ue = function(e, t, r) {
|
|
1067
|
-
return t.replace(/{([^{}]+)}/g, (t, n) => {
|
|
1068
|
-
const o = fe(e, n, r);
|
|
1069
|
-
return o ?? "";
|
|
1070
|
-
});
|
|
1071
|
-
};
|
|
1072
|
-
|
|
1073
|
-
const Ee = {
|
|
1074
|
-
maxTimer: 2 ** 31 - 1
|
|
1075
|
-
};
|
|
1076
|
-
|
|
1077
|
-
var Ne = function(e, t, r) {
|
|
1078
|
-
if (typeof e === "bigint") {
|
|
1079
|
-
e = Number(e);
|
|
1080
|
-
}
|
|
1081
|
-
if (e >= Number.MAX_SAFE_INTEGER) {
|
|
1082
|
-
e = Infinity;
|
|
1083
|
-
}
|
|
1084
|
-
if (typeof e !== "number" && e !== undefined) {
|
|
1085
|
-
throw new TypeError("Timeout must be a number or bigint");
|
|
1086
|
-
}
|
|
1087
|
-
return new Promise(n => {
|
|
1088
|
-
const o = r ? r.setTimeout : setTimeout;
|
|
1089
|
-
const s = () => {
|
|
1090
|
-
const r = Math.min(e, Ee.maxTimer);
|
|
1091
|
-
e -= r;
|
|
1092
|
-
o(() => e > 0 ? s() : n(t), r);
|
|
1093
|
-
};
|
|
1094
|
-
if (e !== Infinity) {
|
|
1095
|
-
s();
|
|
1096
|
-
}
|
|
1097
|
-
});
|
|
1098
|
-
};
|
|
1099
|
-
|
|
1100
|
-
exports.lib.applyToDefaults = b;
|
|
1101
|
-
|
|
1102
|
-
exports.lib.assert = u;
|
|
1103
|
-
|
|
1104
|
-
exports.lib.AssertError = a;
|
|
1105
|
-
|
|
1106
|
-
exports.lib.Bench = F;
|
|
1107
|
-
|
|
1108
|
-
exports.lib.block = K;
|
|
1109
|
-
|
|
1110
|
-
exports.lib.clone = d;
|
|
1111
|
-
|
|
1112
|
-
exports.lib.contain = $;
|
|
1113
|
-
|
|
1114
|
-
exports.lib.deepEqual = _;
|
|
1115
|
-
|
|
1116
|
-
exports.lib.escapeHeaderAttribute = z;
|
|
1117
|
-
|
|
1118
|
-
exports.lib.escapeHtml = te;
|
|
1119
|
-
|
|
1120
|
-
exports.lib.escapeJson = ne;
|
|
1121
|
-
|
|
1122
|
-
exports.lib.escapeRegex = V;
|
|
1123
|
-
|
|
1124
|
-
exports.lib.flatten = se;
|
|
1125
|
-
|
|
1126
|
-
exports.lib.ignore = v;
|
|
1127
|
-
|
|
1128
|
-
exports.lib.intersect = ae;
|
|
1129
|
-
|
|
1130
|
-
exports.lib.isPromise = ce;
|
|
1131
|
-
|
|
1132
|
-
exports.lib.merge = m;
|
|
1133
|
-
|
|
1134
|
-
exports.lib.once = le;
|
|
1135
|
-
|
|
1136
|
-
exports.lib.reach = S;
|
|
1137
|
-
|
|
1138
|
-
exports.lib.reachTemplate = ue;
|
|
1139
|
-
|
|
1140
|
-
exports.lib.stringify = c;
|
|
1141
|
-
|
|
1142
|
-
exports.lib.wait = Ne;
|
|
1143
|
-
|
|
1144
|
-
exports.lib$1 = {};
|
|
1145
|
-
|
|
1146
|
-
(function(e) {
|
|
1147
|
-
const t = {
|
|
1148
|
-
operators: [ "!", "^", "*", "/", "%", "+", "-", "<", "<=", ">", ">=", "==", "!=", "&&", "||", "??" ],
|
|
1149
|
-
operatorCharacters: [ "!", "^", "*", "/", "%", "+", "-", "<", "=", ">", "&", "|", "?" ],
|
|
1150
|
-
operatorsOrder: [ [ "^" ], [ "*", "/", "%" ], [ "+", "-" ], [ "<", "<=", ">", ">=" ], [ "==", "!=" ], [ "&&" ], [ "||", "??" ] ],
|
|
1151
|
-
operatorsPrefix: [ "!", "n" ],
|
|
1152
|
-
literals: {
|
|
1153
|
-
'"': '"',
|
|
1154
|
-
"`": "`",
|
|
1155
|
-
"'": "'",
|
|
1156
|
-
"[": "]"
|
|
1157
|
-
},
|
|
1158
|
-
numberRx: /^(?:[0-9]*(\.[0-9]*)?){1}$/,
|
|
1159
|
-
tokenRx: /^[\w\$\#\.\@\:\{\}]+$/,
|
|
1160
|
-
symbol: Symbol("formula"),
|
|
1161
|
-
settings: Symbol("settings")
|
|
1162
|
-
};
|
|
1163
|
-
e.Parser = class {
|
|
1164
|
-
constructor(e, r = {}) {
|
|
1165
|
-
if (!r[t.settings] && r.constants) {
|
|
1166
|
-
for (const e in r.constants) {
|
|
1167
|
-
const t = r.constants[e];
|
|
1168
|
-
if (t !== null && ![ "boolean", "number", "string" ].includes(typeof t)) {
|
|
1169
|
-
throw new Error(`Formula constant ${e} contains invalid ${typeof t} value type`);
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
this.settings = r[t.settings] ? r : Object.assign({
|
|
1174
|
-
[t.settings]: true,
|
|
1175
|
-
constants: {},
|
|
1176
|
-
functions: {}
|
|
1177
|
-
}, r);
|
|
1178
|
-
this.single = null;
|
|
1179
|
-
this._parts = null;
|
|
1180
|
-
this._parse(e);
|
|
1181
|
-
}
|
|
1182
|
-
_parse(r) {
|
|
1183
|
-
let n = [];
|
|
1184
|
-
let o = "";
|
|
1185
|
-
let s = 0;
|
|
1186
|
-
let i = false;
|
|
1187
|
-
const a = r => {
|
|
1188
|
-
if (s) {
|
|
1189
|
-
throw new Error("Formula missing closing parenthesis");
|
|
1190
|
-
}
|
|
1191
|
-
const a = n.length ? n[n.length - 1] : null;
|
|
1192
|
-
if (!i && !o && !r) {
|
|
1193
|
-
return;
|
|
1194
|
-
}
|
|
1195
|
-
if (a && a.type === "reference" && r === ")") {
|
|
1196
|
-
a.type = "function";
|
|
1197
|
-
a.value = this._subFormula(o, a.value);
|
|
1198
|
-
o = "";
|
|
1199
|
-
return;
|
|
1200
|
-
}
|
|
1201
|
-
if (r === ")") {
|
|
1202
|
-
const t = new e.Parser(o, this.settings);
|
|
1203
|
-
n.push({
|
|
1204
|
-
type: "segment",
|
|
1205
|
-
value: t
|
|
1206
|
-
});
|
|
1207
|
-
} else if (i) {
|
|
1208
|
-
if (i === "]") {
|
|
1209
|
-
n.push({
|
|
1210
|
-
type: "reference",
|
|
1211
|
-
value: o
|
|
1212
|
-
});
|
|
1213
|
-
o = "";
|
|
1214
|
-
return;
|
|
1215
|
-
}
|
|
1216
|
-
n.push({
|
|
1217
|
-
type: "literal",
|
|
1218
|
-
value: o
|
|
1219
|
-
});
|
|
1220
|
-
} else if (t.operatorCharacters.includes(o)) {
|
|
1221
|
-
if (a && a.type === "operator" && t.operators.includes(a.value + o)) {
|
|
1222
|
-
a.value += o;
|
|
1223
|
-
} else {
|
|
1224
|
-
n.push({
|
|
1225
|
-
type: "operator",
|
|
1226
|
-
value: o
|
|
1227
|
-
});
|
|
1228
|
-
}
|
|
1229
|
-
} else if (o.match(t.numberRx)) {
|
|
1230
|
-
n.push({
|
|
1231
|
-
type: "constant",
|
|
1232
|
-
value: parseFloat(o)
|
|
1233
|
-
});
|
|
1234
|
-
} else if (this.settings.constants[o] !== undefined) {
|
|
1235
|
-
n.push({
|
|
1236
|
-
type: "constant",
|
|
1237
|
-
value: this.settings.constants[o]
|
|
1238
|
-
});
|
|
1239
|
-
} else {
|
|
1240
|
-
if (!o.match(t.tokenRx)) {
|
|
1241
|
-
throw new Error(`Formula contains invalid token: ${o}`);
|
|
1242
|
-
}
|
|
1243
|
-
n.push({
|
|
1244
|
-
type: "reference",
|
|
1245
|
-
value: o
|
|
1246
|
-
});
|
|
1247
|
-
}
|
|
1248
|
-
o = "";
|
|
1249
|
-
};
|
|
1250
|
-
for (const e of r) {
|
|
1251
|
-
if (i) {
|
|
1252
|
-
if (e === i) {
|
|
1253
|
-
a();
|
|
1254
|
-
i = false;
|
|
1255
|
-
} else {
|
|
1256
|
-
o += e;
|
|
1257
|
-
}
|
|
1258
|
-
} else if (s) {
|
|
1259
|
-
if (e === "(") {
|
|
1260
|
-
o += e;
|
|
1261
|
-
++s;
|
|
1262
|
-
} else if (e === ")") {
|
|
1263
|
-
--s;
|
|
1264
|
-
if (!s) {
|
|
1265
|
-
a(e);
|
|
1266
|
-
} else {
|
|
1267
|
-
o += e;
|
|
1268
|
-
}
|
|
1269
|
-
} else {
|
|
1270
|
-
o += e;
|
|
1271
|
-
}
|
|
1272
|
-
} else if (e in t.literals) {
|
|
1273
|
-
i = t.literals[e];
|
|
1274
|
-
} else if (e === "(") {
|
|
1275
|
-
a();
|
|
1276
|
-
++s;
|
|
1277
|
-
} else if (t.operatorCharacters.includes(e)) {
|
|
1278
|
-
a();
|
|
1279
|
-
o = e;
|
|
1280
|
-
a();
|
|
1281
|
-
} else if (e !== " ") {
|
|
1282
|
-
o += e;
|
|
1283
|
-
} else {
|
|
1284
|
-
a();
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
a();
|
|
1288
|
-
n = n.map((e, t) => {
|
|
1289
|
-
if (e.type !== "operator" || e.value !== "-" || t && n[t - 1].type !== "operator") {
|
|
1290
|
-
return e;
|
|
1291
|
-
}
|
|
1292
|
-
return {
|
|
1293
|
-
type: "operator",
|
|
1294
|
-
value: "n"
|
|
1295
|
-
};
|
|
1296
|
-
});
|
|
1297
|
-
let c = false;
|
|
1298
|
-
for (const e of n) {
|
|
1299
|
-
if (e.type === "operator") {
|
|
1300
|
-
if (t.operatorsPrefix.includes(e.value)) {
|
|
1301
|
-
continue;
|
|
1302
|
-
}
|
|
1303
|
-
if (!c) {
|
|
1304
|
-
throw new Error("Formula contains an operator in invalid position");
|
|
1305
|
-
}
|
|
1306
|
-
if (!t.operators.includes(e.value)) {
|
|
1307
|
-
throw new Error(`Formula contains an unknown operator ${e.value}`);
|
|
1308
|
-
}
|
|
1309
|
-
} else if (c) {
|
|
1310
|
-
throw new Error("Formula missing expected operator");
|
|
1311
|
-
}
|
|
1312
|
-
c = !c;
|
|
1313
|
-
}
|
|
1314
|
-
if (!c) {
|
|
1315
|
-
throw new Error("Formula contains invalid trailing operator");
|
|
1316
|
-
}
|
|
1317
|
-
if (n.length === 1 && [ "reference", "literal", "constant" ].includes(n[0].type)) {
|
|
1318
|
-
this.single = {
|
|
1319
|
-
type: n[0].type === "reference" ? "reference" : "value",
|
|
1320
|
-
value: n[0].value
|
|
1321
|
-
};
|
|
1322
|
-
}
|
|
1323
|
-
this._parts = n.map(e => {
|
|
1324
|
-
if (e.type === "operator") {
|
|
1325
|
-
return t.operatorsPrefix.includes(e.value) ? e : e.value;
|
|
1326
|
-
}
|
|
1327
|
-
if (e.type !== "reference") {
|
|
1328
|
-
return e.value;
|
|
1329
|
-
}
|
|
1330
|
-
if (this.settings.tokenRx && !this.settings.tokenRx.test(e.value)) {
|
|
1331
|
-
throw new Error(`Formula contains invalid reference ${e.value}`);
|
|
1332
|
-
}
|
|
1333
|
-
if (this.settings.reference) {
|
|
1334
|
-
return this.settings.reference(e.value);
|
|
1335
|
-
}
|
|
1336
|
-
return t.reference(e.value);
|
|
1337
|
-
});
|
|
1338
|
-
}
|
|
1339
|
-
_subFormula(r, n) {
|
|
1340
|
-
const o = this.settings.functions[n];
|
|
1341
|
-
if (typeof o !== "function") {
|
|
1342
|
-
throw new Error(`Formula contains unknown function ${n}`);
|
|
1343
|
-
}
|
|
1344
|
-
let s = [];
|
|
1345
|
-
if (r) {
|
|
1346
|
-
let e = "";
|
|
1347
|
-
let o = 0;
|
|
1348
|
-
let i = false;
|
|
1349
|
-
const a = () => {
|
|
1350
|
-
if (!e) {
|
|
1351
|
-
throw new Error(`Formula contains function ${n} with invalid arguments ${r}`);
|
|
1352
|
-
}
|
|
1353
|
-
s.push(e);
|
|
1354
|
-
e = "";
|
|
1355
|
-
};
|
|
1356
|
-
for (let n = 0; n < r.length; ++n) {
|
|
1357
|
-
const s = r[n];
|
|
1358
|
-
if (i) {
|
|
1359
|
-
e += s;
|
|
1360
|
-
if (s === i) {
|
|
1361
|
-
i = false;
|
|
1362
|
-
}
|
|
1363
|
-
} else if (s in t.literals && !o) {
|
|
1364
|
-
e += s;
|
|
1365
|
-
i = t.literals[s];
|
|
1366
|
-
} else if (s === "," && !o) {
|
|
1367
|
-
a();
|
|
1368
|
-
} else {
|
|
1369
|
-
e += s;
|
|
1370
|
-
if (s === "(") {
|
|
1371
|
-
++o;
|
|
1372
|
-
} else if (s === ")") {
|
|
1373
|
-
--o;
|
|
1374
|
-
}
|
|
1375
|
-
}
|
|
1376
|
-
}
|
|
1377
|
-
a();
|
|
1378
|
-
}
|
|
1379
|
-
s = s.map(t => new e.Parser(t, this.settings));
|
|
1380
|
-
return function(e) {
|
|
1381
|
-
const t = [];
|
|
1382
|
-
for (const r of s) {
|
|
1383
|
-
t.push(r.evaluate(e));
|
|
1384
|
-
}
|
|
1385
|
-
return o.call(e, ...t);
|
|
1386
|
-
};
|
|
1387
|
-
}
|
|
1388
|
-
evaluate(e) {
|
|
1389
|
-
const r = this._parts.slice();
|
|
1390
|
-
for (let n = r.length - 2; n >= 0; --n) {
|
|
1391
|
-
const o = r[n];
|
|
1392
|
-
if (o && o.type === "operator") {
|
|
1393
|
-
const s = r[n + 1];
|
|
1394
|
-
r.splice(n + 1, 1);
|
|
1395
|
-
const i = t.evaluate(s, e);
|
|
1396
|
-
r[n] = t.single(o.value, i);
|
|
1397
|
-
}
|
|
1398
|
-
}
|
|
1399
|
-
t.operatorsOrder.forEach(n => {
|
|
1400
|
-
for (let o = 1; o < r.length - 1; ) {
|
|
1401
|
-
if (n.includes(r[o])) {
|
|
1402
|
-
const n = r[o];
|
|
1403
|
-
const s = t.evaluate(r[o - 1], e);
|
|
1404
|
-
const i = t.evaluate(r[o + 1], e);
|
|
1405
|
-
r.splice(o, 2);
|
|
1406
|
-
const a = t.calculate(n, s, i);
|
|
1407
|
-
r[o - 1] = a === 0 ? 0 : a;
|
|
1408
|
-
} else {
|
|
1409
|
-
o += 2;
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
1412
|
-
});
|
|
1413
|
-
return t.evaluate(r[0], e);
|
|
1414
|
-
}
|
|
1415
|
-
};
|
|
1416
|
-
e.Parser.prototype[t.symbol] = true;
|
|
1417
|
-
t.reference = function(e) {
|
|
1418
|
-
return function(t) {
|
|
1419
|
-
return t && t[e] !== undefined ? t[e] : null;
|
|
1420
|
-
};
|
|
1421
|
-
};
|
|
1422
|
-
t.evaluate = function(e, r) {
|
|
1423
|
-
if (e === null) {
|
|
1424
|
-
return null;
|
|
1425
|
-
}
|
|
1426
|
-
if (typeof e === "function") {
|
|
1427
|
-
return e(r);
|
|
1428
|
-
}
|
|
1429
|
-
if (e[t.symbol]) {
|
|
1430
|
-
return e.evaluate(r);
|
|
1431
|
-
}
|
|
1432
|
-
return e;
|
|
1433
|
-
};
|
|
1434
|
-
t.single = function(e, t) {
|
|
1435
|
-
if (e === "!") {
|
|
1436
|
-
return t ? false : true;
|
|
1437
|
-
}
|
|
1438
|
-
const r = -t;
|
|
1439
|
-
if (r === 0) {
|
|
1440
|
-
return 0;
|
|
1441
|
-
}
|
|
1442
|
-
return r;
|
|
1443
|
-
};
|
|
1444
|
-
t.calculate = function(e, r, n) {
|
|
1445
|
-
if (e === "??") {
|
|
1446
|
-
return t.exists(r) ? r : n;
|
|
1447
|
-
}
|
|
1448
|
-
if (typeof r === "string" || typeof n === "string") {
|
|
1449
|
-
if (e === "+") {
|
|
1450
|
-
r = t.exists(r) ? r : "";
|
|
1451
|
-
n = t.exists(n) ? n : "";
|
|
1452
|
-
return r + n;
|
|
1453
|
-
}
|
|
1454
|
-
} else {
|
|
1455
|
-
switch (e) {
|
|
1456
|
-
case "^":
|
|
1457
|
-
return Math.pow(r, n);
|
|
1458
|
-
|
|
1459
|
-
case "*":
|
|
1460
|
-
return r * n;
|
|
1461
|
-
|
|
1462
|
-
case "/":
|
|
1463
|
-
return r / n;
|
|
1464
|
-
|
|
1465
|
-
case "%":
|
|
1466
|
-
return r % n;
|
|
1467
|
-
|
|
1468
|
-
case "+":
|
|
1469
|
-
return r + n;
|
|
1470
|
-
|
|
1471
|
-
case "-":
|
|
1472
|
-
return r - n;
|
|
1473
|
-
}
|
|
1474
|
-
}
|
|
1475
|
-
switch (e) {
|
|
1476
|
-
case "<":
|
|
1477
|
-
return r < n;
|
|
1478
|
-
|
|
1479
|
-
case "<=":
|
|
1480
|
-
return r <= n;
|
|
1481
|
-
|
|
1482
|
-
case ">":
|
|
1483
|
-
return r > n;
|
|
1484
|
-
|
|
1485
|
-
case ">=":
|
|
1486
|
-
return r >= n;
|
|
1487
|
-
|
|
1488
|
-
case "==":
|
|
1489
|
-
return r === n;
|
|
1490
|
-
|
|
1491
|
-
case "!=":
|
|
1492
|
-
return r !== n;
|
|
1493
|
-
|
|
1494
|
-
case "&&":
|
|
1495
|
-
return r && n;
|
|
1496
|
-
|
|
1497
|
-
case "||":
|
|
1498
|
-
return r || n;
|
|
1499
|
-
}
|
|
1500
|
-
return null;
|
|
1501
|
-
};
|
|
1502
|
-
t.exists = function(e) {
|
|
1503
|
-
return e !== null && e !== undefined;
|
|
1504
|
-
};
|
|
1505
|
-
})(exports.lib$1);
|
|
1506
|
-
|
|
1507
|
-
exports.lib$2 = {};
|
|
1508
|
-
|
|
1509
|
-
exports.lib$2.location = function(e = 0) {
|
|
1510
|
-
const t = Error.prepareStackTrace;
|
|
1511
|
-
Error.prepareStackTrace = (e, t) => t;
|
|
1512
|
-
const r = {};
|
|
1513
|
-
Error.captureStackTrace(r, this);
|
|
1514
|
-
const n = r.stack[e + 1];
|
|
1515
|
-
Error.prepareStackTrace = t;
|
|
1516
|
-
return {
|
|
1517
|
-
filename: n.getFileName(),
|
|
1518
|
-
line: n.getLineNumber()
|
|
1519
|
-
};
|
|
1520
|
-
};
|
|
1521
|
-
|
|
1522
|
-
exports.lib$3 = {};
|
|
1523
|
-
|
|
1524
|
-
const {assert: Oe} = exports.lib;
|
|
1525
|
-
|
|
1526
|
-
const Se = {};
|
|
1527
|
-
|
|
1528
|
-
exports.lib$3.Sorter = class {
|
|
1529
|
-
constructor() {
|
|
1530
|
-
this._items = [];
|
|
1531
|
-
this.nodes = [];
|
|
1532
|
-
}
|
|
1533
|
-
add(e, t) {
|
|
1534
|
-
t = t ?? {};
|
|
1535
|
-
const r = [].concat(t.before ?? []);
|
|
1536
|
-
const n = [].concat(t.after ?? []);
|
|
1537
|
-
const o = t.group ?? "?";
|
|
1538
|
-
const s = t.sort ?? 0;
|
|
1539
|
-
Oe(!r.includes(o), `Item cannot come before itself: ${o}`);
|
|
1540
|
-
Oe(!r.includes("?"), "Item cannot come before unassociated items");
|
|
1541
|
-
Oe(!n.includes(o), `Item cannot come after itself: ${o}`);
|
|
1542
|
-
Oe(!n.includes("?"), "Item cannot come after unassociated items");
|
|
1543
|
-
if (!Array.isArray(e)) {
|
|
1544
|
-
e = [ e ];
|
|
1545
|
-
}
|
|
1546
|
-
for (const t of e) {
|
|
1547
|
-
const e = {
|
|
1548
|
-
seq: this._items.length,
|
|
1549
|
-
sort: s,
|
|
1550
|
-
before: r,
|
|
1551
|
-
after: n,
|
|
1552
|
-
group: o,
|
|
1553
|
-
node: t
|
|
1554
|
-
};
|
|
1555
|
-
this._items.push(e);
|
|
1556
|
-
}
|
|
1557
|
-
if (!t.manual) {
|
|
1558
|
-
const e = this._sort();
|
|
1559
|
-
Oe(e, "item", o !== "?" ? `added into group ${o}` : "", "created a dependencies error");
|
|
1560
|
-
}
|
|
1561
|
-
return this.nodes;
|
|
1562
|
-
}
|
|
1563
|
-
merge(e) {
|
|
1564
|
-
if (!Array.isArray(e)) {
|
|
1565
|
-
e = [ e ];
|
|
1566
|
-
}
|
|
1567
|
-
for (const t of e) {
|
|
1568
|
-
if (t) {
|
|
1569
|
-
for (const e of t._items) {
|
|
1570
|
-
this._items.push(Object.assign({}, e));
|
|
1571
|
-
}
|
|
1572
|
-
}
|
|
1573
|
-
}
|
|
1574
|
-
this._items.sort(Se.mergeSort);
|
|
1575
|
-
for (let e = 0; e < this._items.length; ++e) {
|
|
1576
|
-
this._items[e].seq = e;
|
|
1577
|
-
}
|
|
1578
|
-
const t = this._sort();
|
|
1579
|
-
Oe(t, "merge created a dependencies error");
|
|
1580
|
-
return this.nodes;
|
|
1581
|
-
}
|
|
1582
|
-
sort() {
|
|
1583
|
-
const e = this._sort();
|
|
1584
|
-
Oe(e, "sort created a dependencies error");
|
|
1585
|
-
return this.nodes;
|
|
1586
|
-
}
|
|
1587
|
-
_sort() {
|
|
1588
|
-
const e = {};
|
|
1589
|
-
const t = Object.create(null);
|
|
1590
|
-
const r = Object.create(null);
|
|
1591
|
-
for (const n of this._items) {
|
|
1592
|
-
const o = n.seq;
|
|
1593
|
-
const s = n.group;
|
|
1594
|
-
r[s] = r[s] ?? [];
|
|
1595
|
-
r[s].push(o);
|
|
1596
|
-
e[o] = n.before;
|
|
1597
|
-
for (const e of n.after) {
|
|
1598
|
-
t[e] = t[e] ?? [];
|
|
1599
|
-
t[e].push(o);
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
|
-
for (const t in e) {
|
|
1603
|
-
const n = [];
|
|
1604
|
-
for (const o in e[t]) {
|
|
1605
|
-
const s = e[t][o];
|
|
1606
|
-
r[s] = r[s] ?? [];
|
|
1607
|
-
n.push(...r[s]);
|
|
1608
|
-
}
|
|
1609
|
-
e[t] = n;
|
|
1610
|
-
}
|
|
1611
|
-
for (const n in t) {
|
|
1612
|
-
if (r[n]) {
|
|
1613
|
-
for (const o of r[n]) {
|
|
1614
|
-
e[o].push(...t[n]);
|
|
1615
|
-
}
|
|
1616
|
-
}
|
|
1617
|
-
}
|
|
1618
|
-
const n = {};
|
|
1619
|
-
for (const t in e) {
|
|
1620
|
-
const r = e[t];
|
|
1621
|
-
for (const e of r) {
|
|
1622
|
-
n[e] = n[e] ?? [];
|
|
1623
|
-
n[e].push(t);
|
|
1624
|
-
}
|
|
1625
|
-
}
|
|
1626
|
-
const o = {};
|
|
1627
|
-
const s = [];
|
|
1628
|
-
for (let e = 0; e < this._items.length; ++e) {
|
|
1629
|
-
let t = e;
|
|
1630
|
-
if (n[e]) {
|
|
1631
|
-
t = null;
|
|
1632
|
-
for (let e = 0; e < this._items.length; ++e) {
|
|
1633
|
-
if (o[e] === true) {
|
|
1634
|
-
continue;
|
|
1635
|
-
}
|
|
1636
|
-
if (!n[e]) {
|
|
1637
|
-
n[e] = [];
|
|
1638
|
-
}
|
|
1639
|
-
const r = n[e].length;
|
|
1640
|
-
let s = 0;
|
|
1641
|
-
for (let t = 0; t < r; ++t) {
|
|
1642
|
-
if (o[n[e][t]]) {
|
|
1643
|
-
++s;
|
|
1644
|
-
}
|
|
1645
|
-
}
|
|
1646
|
-
if (s === r) {
|
|
1647
|
-
t = e;
|
|
1648
|
-
break;
|
|
1649
|
-
}
|
|
1650
|
-
}
|
|
1651
|
-
}
|
|
1652
|
-
if (t !== null) {
|
|
1653
|
-
o[t] = true;
|
|
1654
|
-
s.push(t);
|
|
1655
|
-
}
|
|
1656
|
-
}
|
|
1657
|
-
if (s.length !== this._items.length) {
|
|
1658
|
-
return false;
|
|
1659
|
-
}
|
|
1660
|
-
const i = {};
|
|
1661
|
-
for (const e of this._items) {
|
|
1662
|
-
i[e.seq] = e;
|
|
1663
|
-
}
|
|
1664
|
-
this._items = [];
|
|
1665
|
-
this.nodes = [];
|
|
1666
|
-
for (const e of s) {
|
|
1667
|
-
const t = i[e];
|
|
1668
|
-
this.nodes.push(t.node);
|
|
1669
|
-
this._items.push(t);
|
|
1670
|
-
}
|
|
1671
|
-
return true;
|
|
1672
|
-
}
|
|
1673
|
-
};
|
|
1674
|
-
|
|
1675
|
-
Se.mergeSort = (e, t) => e.sort === t.sort ? 0 : e.sort < t.sort ? -1 : 1;
|
|
1676
|
-
|
|
1677
|
-
const Ie = {
|
|
1678
|
-
EMPTY_STRING: "Address must be a non-empty string",
|
|
1679
|
-
FORBIDDEN_UNICODE: "Address contains forbidden Unicode characters",
|
|
1680
|
-
MULTIPLE_AT_CHAR: "Address cannot contain more than one @ character",
|
|
1681
|
-
MISSING_AT_CHAR: "Address must contain one @ character",
|
|
1682
|
-
EMPTY_LOCAL: "Address local part cannot be empty",
|
|
1683
|
-
ADDRESS_TOO_LONG: "Address too long",
|
|
1684
|
-
LOCAL_TOO_LONG: "Address local part too long",
|
|
1685
|
-
EMPTY_LOCAL_SEGMENT: "Address local part contains empty dot-separated segment",
|
|
1686
|
-
INVALID_LOCAL_CHARS: "Address local part contains invalid character",
|
|
1687
|
-
DOMAIN_NON_EMPTY_STRING: "Domain must be a non-empty string",
|
|
1688
|
-
DOMAIN_TOO_LONG: "Domain too long",
|
|
1689
|
-
DOMAIN_INVALID_UNICODE_CHARS: "Domain contains forbidden Unicode characters",
|
|
1690
|
-
DOMAIN_INVALID_CHARS: "Domain contains invalid character",
|
|
1691
|
-
DOMAIN_INVALID_TLDS_CHARS: "Domain contains invalid tld character",
|
|
1692
|
-
DOMAIN_SEGMENTS_COUNT: "Domain lacks the minimum required number of segments",
|
|
1693
|
-
DOMAIN_SEGMENTS_COUNT_MAX: "Domain contains too many segments",
|
|
1694
|
-
DOMAIN_FORBIDDEN_TLDS: "Domain uses forbidden TLD",
|
|
1695
|
-
DOMAIN_EMPTY_SEGMENT: "Domain contains empty dot-separated segment",
|
|
1696
|
-
DOMAIN_LONG_SEGMENT: "Domain contains dot-separated segment that is too long"
|
|
1697
|
-
};
|
|
1698
|
-
|
|
1699
|
-
function Re(e) {
|
|
1700
|
-
return {
|
|
1701
|
-
code: e,
|
|
1702
|
-
error: Ie[e]
|
|
1703
|
-
};
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
const pe = 2;
|
|
1707
|
-
|
|
1708
|
-
const Te = /[^\x00-\x7f]/;
|
|
1709
|
-
|
|
1710
|
-
const Ce = /[\x00-\x20@\:\/\\#!\$&\'\(\)\*\+,;=\?]/;
|
|
1711
|
-
|
|
1712
|
-
const Le = /^[a-zA-Z](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
|
|
1713
|
-
|
|
1714
|
-
const Me = /^[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
|
|
1715
|
-
|
|
1716
|
-
const de = /^[a-zA-Z0-9_](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/;
|
|
1717
|
-
|
|
1718
|
-
const De = o.URL || URL;
|
|
1719
|
-
|
|
1720
|
-
function Be(e) {
|
|
1721
|
-
return !!e.allow;
|
|
1722
|
-
}
|
|
1723
|
-
|
|
1724
|
-
function he(e, t = {}) {
|
|
1725
|
-
if (!e) {
|
|
1726
|
-
return Re("DOMAIN_NON_EMPTY_STRING");
|
|
1727
|
-
}
|
|
1728
|
-
if (typeof e !== "string") {
|
|
1729
|
-
throw new Error("Invalid input: domain must be a string");
|
|
1730
|
-
}
|
|
1731
|
-
if (e.length > 256) {
|
|
1732
|
-
return Re("DOMAIN_TOO_LONG");
|
|
1733
|
-
}
|
|
1734
|
-
const r = !Te.test(e);
|
|
1735
|
-
if (!r) {
|
|
1736
|
-
if (t.allowUnicode === false) {
|
|
1737
|
-
return Re("DOMAIN_INVALID_UNICODE_CHARS");
|
|
1738
|
-
}
|
|
1739
|
-
e = e.normalize("NFC");
|
|
1740
|
-
}
|
|
1741
|
-
if (Ce.test(e)) {
|
|
1742
|
-
return Re("DOMAIN_INVALID_CHARS");
|
|
1743
|
-
}
|
|
1744
|
-
e = me(e);
|
|
1745
|
-
if (t.allowFullyQualified && e[e.length - 1] === ".") {
|
|
1746
|
-
e = e.slice(0, -1);
|
|
1747
|
-
}
|
|
1748
|
-
const n = t.minDomainSegments || pe;
|
|
1749
|
-
const o = e.split(".");
|
|
1750
|
-
if (o.length < n) {
|
|
1751
|
-
return Re("DOMAIN_SEGMENTS_COUNT");
|
|
1752
|
-
}
|
|
1753
|
-
if (t.maxDomainSegments) {
|
|
1754
|
-
if (o.length > t.maxDomainSegments) {
|
|
1755
|
-
return Re("DOMAIN_SEGMENTS_COUNT_MAX");
|
|
1756
|
-
}
|
|
1757
|
-
}
|
|
1758
|
-
const s = t.tlds;
|
|
1759
|
-
if (s) {
|
|
1760
|
-
const e = o[o.length - 1].toLowerCase();
|
|
1761
|
-
if (Be(s)) {
|
|
1762
|
-
if (!s.allow.has(e)) {
|
|
1763
|
-
return Re("DOMAIN_FORBIDDEN_TLDS");
|
|
1764
|
-
}
|
|
1765
|
-
} else if (s.deny.has(e)) {
|
|
1766
|
-
return Re("DOMAIN_FORBIDDEN_TLDS");
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
for (let e = 0; e < o.length; ++e) {
|
|
1770
|
-
const r = o[e];
|
|
1771
|
-
if (!r.length) {
|
|
1772
|
-
return Re("DOMAIN_EMPTY_SEGMENT");
|
|
1773
|
-
}
|
|
1774
|
-
if (r.length > 63) {
|
|
1775
|
-
return Re("DOMAIN_LONG_SEGMENT");
|
|
1776
|
-
}
|
|
1777
|
-
if (e < o.length - 1) {
|
|
1778
|
-
if (t.allowUnderscore) {
|
|
1779
|
-
if (!de.test(r)) {
|
|
1780
|
-
return Re("DOMAIN_INVALID_CHARS");
|
|
1781
|
-
}
|
|
1782
|
-
} else {
|
|
1783
|
-
if (!Me.test(r)) {
|
|
1784
|
-
return Re("DOMAIN_INVALID_CHARS");
|
|
1785
|
-
}
|
|
1786
|
-
}
|
|
1787
|
-
} else {
|
|
1788
|
-
if (!Le.test(r)) {
|
|
1789
|
-
return Re("DOMAIN_INVALID_TLDS_CHARS");
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
|
-
}
|
|
1793
|
-
return null;
|
|
1794
|
-
}
|
|
1795
|
-
|
|
1796
|
-
function Ge(e, t) {
|
|
1797
|
-
return !he(e, t);
|
|
1798
|
-
}
|
|
1799
|
-
|
|
1800
|
-
function me(e) {
|
|
1801
|
-
if (e.includes("%")) {
|
|
1802
|
-
e = e.replace(/%/g, "%25");
|
|
1803
|
-
}
|
|
1804
|
-
try {
|
|
1805
|
-
return new De(`http://${e}`).host;
|
|
1806
|
-
} catch (t) {
|
|
1807
|
-
return e;
|
|
1808
|
-
}
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
function ye(e) {
|
|
1812
|
-
if (!e) {
|
|
1813
|
-
return;
|
|
1814
|
-
}
|
|
1815
|
-
if (typeof e.tlds !== "object") {
|
|
1816
|
-
throw new Error("Invalid options: tlds must be a boolean or an object");
|
|
1817
|
-
}
|
|
1818
|
-
if (Be(e.tlds)) {
|
|
1819
|
-
if (e.tlds.allow instanceof Set === false) {
|
|
1820
|
-
throw new Error("Invalid options: tlds.allow must be a Set object or true");
|
|
1821
|
-
}
|
|
1822
|
-
if (e.tlds.deny) {
|
|
1823
|
-
throw new Error("Invalid options: cannot specify both tlds.allow and tlds.deny lists");
|
|
1824
|
-
}
|
|
1825
|
-
} else {
|
|
1826
|
-
if (e.tlds.deny instanceof Set === false) {
|
|
1827
|
-
throw new Error("Invalid options: tlds.deny must be a Set object");
|
|
1828
|
-
}
|
|
1829
|
-
}
|
|
1830
|
-
}
|
|
1831
|
-
|
|
1832
|
-
const Pe = /[^\x00-\x7f]/;
|
|
1833
|
-
|
|
1834
|
-
const ge = new (s.TextEncoder || TextEncoder);
|
|
1835
|
-
|
|
1836
|
-
function Ue(e, t) {
|
|
1837
|
-
return be(e, t);
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
function Xe(e, t) {
|
|
1841
|
-
return !be(e, t);
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
|
-
function be(e, t = {}) {
|
|
1845
|
-
if (typeof e !== "string") {
|
|
1846
|
-
throw new Error("Invalid input: email must be a string");
|
|
1847
|
-
}
|
|
1848
|
-
if (!e) {
|
|
1849
|
-
return Re("EMPTY_STRING");
|
|
1850
|
-
}
|
|
1851
|
-
const r = !Pe.test(e);
|
|
1852
|
-
if (!r) {
|
|
1853
|
-
if (t.allowUnicode === false) {
|
|
1854
|
-
return Re("FORBIDDEN_UNICODE");
|
|
1855
|
-
}
|
|
1856
|
-
e = e.normalize("NFC");
|
|
1857
|
-
}
|
|
1858
|
-
const n = e.split("@");
|
|
1859
|
-
if (n.length !== 2) {
|
|
1860
|
-
return n.length > 2 ? Re("MULTIPLE_AT_CHAR") : Re("MISSING_AT_CHAR");
|
|
1861
|
-
}
|
|
1862
|
-
const [o, s] = n;
|
|
1863
|
-
if (!o) {
|
|
1864
|
-
return Re("EMPTY_LOCAL");
|
|
1865
|
-
}
|
|
1866
|
-
if (!t.ignoreLength) {
|
|
1867
|
-
if (e.length > 254) {
|
|
1868
|
-
return Re("ADDRESS_TOO_LONG");
|
|
1869
|
-
}
|
|
1870
|
-
if (ge.encode(o).length > 64) {
|
|
1871
|
-
return Re("LOCAL_TOO_LONG");
|
|
1872
|
-
}
|
|
1873
|
-
}
|
|
1874
|
-
return He(o, r) || he(s, t);
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
|
-
function He(e, t) {
|
|
1878
|
-
const r = e.split(".");
|
|
1879
|
-
for (const e of r) {
|
|
1880
|
-
if (!e.length) {
|
|
1881
|
-
return Re("EMPTY_LOCAL_SEGMENT");
|
|
1882
|
-
}
|
|
1883
|
-
if (t) {
|
|
1884
|
-
if (!ve.test(e)) {
|
|
1885
|
-
return Re("INVALID_LOCAL_CHARS");
|
|
1886
|
-
}
|
|
1887
|
-
continue;
|
|
1888
|
-
}
|
|
1889
|
-
for (const t of e) {
|
|
1890
|
-
if (ve.test(t)) {
|
|
1891
|
-
continue;
|
|
1892
|
-
}
|
|
1893
|
-
const e = Fe(t);
|
|
1894
|
-
if (!we.test(e)) {
|
|
1895
|
-
return Re("INVALID_LOCAL_CHARS");
|
|
1896
|
-
}
|
|
1897
|
-
}
|
|
1898
|
-
}
|
|
1899
|
-
return null;
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
function Fe(e) {
|
|
1903
|
-
return Array.from(ge.encode(e), e => String.fromCharCode(e)).join("");
|
|
1904
|
-
}
|
|
1905
|
-
|
|
1906
|
-
const ve = /^[\w!#\$%&'\*\+\-/=\?\^`\{\|\}~]+$/;
|
|
1907
|
-
|
|
1908
|
-
const we = new RegExp([ "(?:[\\xc2-\\xdf][\\x80-\\xbf])", "(?:\\xe0[\\xa0-\\xbf][\\x80-\\xbf])|(?:[\\xe1-\\xec][\\x80-\\xbf]{2})|(?:\\xed[\\x80-\\x9f][\\x80-\\xbf])|(?:[\\xee-\\xef][\\x80-\\xbf]{2})", "(?:\\xf0[\\x90-\\xbf][\\x80-\\xbf]{2})|(?:[\\xf1-\\xf3][\\x80-\\xbf]{3})|(?:\\xf4[\\x80-\\x8f][\\x80-\\xbf]{2})" ].join("|"));
|
|
1909
|
-
|
|
1910
|
-
function Ke() {
|
|
1911
|
-
const e = {};
|
|
1912
|
-
const t = "\\dA-Fa-f";
|
|
1913
|
-
const r = "[" + t + "]";
|
|
1914
|
-
const n = "\\w-\\.~";
|
|
1915
|
-
const o = "!\\$&'\\(\\)\\*\\+,;=";
|
|
1916
|
-
const s = "%" + t;
|
|
1917
|
-
const i = n + s + o + ":@";
|
|
1918
|
-
const a = "[" + i + "]";
|
|
1919
|
-
const c = "(?:0{0,2}\\d|0?[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])";
|
|
1920
|
-
e.ipv4address = "(?:" + c + "\\.){3}" + c;
|
|
1921
|
-
const A = r + "{1,4}";
|
|
1922
|
-
const l = "(?:" + A + ":" + A + "|" + e.ipv4address + ")";
|
|
1923
|
-
const f = "(?:" + A + ":){6}" + l;
|
|
1924
|
-
const u = "::(?:" + A + ":){5}" + l;
|
|
1925
|
-
const E = "(?:" + A + ")?::(?:" + A + ":){4}" + l;
|
|
1926
|
-
const N = "(?:(?:" + A + ":){0,1}" + A + ")?::(?:" + A + ":){3}" + l;
|
|
1927
|
-
const O = "(?:(?:" + A + ":){0,2}" + A + ")?::(?:" + A + ":){2}" + l;
|
|
1928
|
-
const S = "(?:(?:" + A + ":){0,3}" + A + ")?::" + A + ":" + l;
|
|
1929
|
-
const I = "(?:(?:" + A + ":){0,4}" + A + ")?::" + l;
|
|
1930
|
-
const R = "(?:(?:" + A + ":){0,5}" + A + ")?::" + A;
|
|
1931
|
-
const p = "(?:(?:" + A + ":){0,6}" + A + ")?::";
|
|
1932
|
-
e.ipv4Cidr = "(?:\\d|[1-2]\\d|3[0-2])";
|
|
1933
|
-
e.ipv6Cidr = "(?:0{0,2}\\d|0?[1-9]\\d|1[01]\\d|12[0-8])";
|
|
1934
|
-
e.ipv6address = "(?:" + f + "|" + u + "|" + E + "|" + N + "|" + O + "|" + S + "|" + I + "|" + R + "|" + p + ")";
|
|
1935
|
-
e.ipvFuture = "v" + r + "+\\.[" + n + o + ":]+";
|
|
1936
|
-
e.scheme = "[a-zA-Z][a-zA-Z\\d+-\\.]*";
|
|
1937
|
-
e.schemeRegex = new RegExp(e.scheme);
|
|
1938
|
-
const T = "[" + n + s + o + ":]*";
|
|
1939
|
-
const C = "\\[(?:" + e.ipv6address + "|" + e.ipvFuture + ")\\]";
|
|
1940
|
-
const L = "[" + n + s + o + "]{1,255}";
|
|
1941
|
-
const M = "(?:" + C + "|" + e.ipv4address + "|" + L + ")";
|
|
1942
|
-
const d = "\\d*";
|
|
1943
|
-
const D = "(?:" + T + "@)?" + M + "(?::" + d + ")?";
|
|
1944
|
-
const B = "(?:" + T + "@)?(" + M + ")(?::" + d + ")?";
|
|
1945
|
-
const h = a + "*";
|
|
1946
|
-
const G = a + "+";
|
|
1947
|
-
const m = "[" + n + s + o + "@" + "]+";
|
|
1948
|
-
const y = "";
|
|
1949
|
-
const P = "(?:\\/" + h + ")*";
|
|
1950
|
-
const g = "\\/(?:" + G + P + ")?";
|
|
1951
|
-
const U = G + P;
|
|
1952
|
-
const X = m + P;
|
|
1953
|
-
const b = "(?:\\/\\/\\/" + h + P + ")";
|
|
1954
|
-
e.hierPart = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + U + "|" + b + ")";
|
|
1955
|
-
e.hierPartCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + U + ")";
|
|
1956
|
-
e.relativeRef = "(?:" + "(?:\\/\\/" + D + P + ")" + "|" + g + "|" + X + "|" + y + ")";
|
|
1957
|
-
e.relativeRefCapture = "(?:" + "(?:\\/\\/" + B + P + ")" + "|" + g + "|" + X + "|" + y + ")";
|
|
1958
|
-
e.query = "[" + i + "\\/\\?]*(?=#|$)";
|
|
1959
|
-
e.queryWithSquareBrackets = "[" + i + "\\[\\]\\/\\?]*(?=#|$)";
|
|
1960
|
-
e.fragment = "[" + i + "\\/\\?]*";
|
|
1961
|
-
return e;
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
const Ye = Ke();
|
|
1965
|
-
|
|
1966
|
-
const xe = {
|
|
1967
|
-
v4Cidr: Ye.ipv4Cidr,
|
|
1968
|
-
v6Cidr: Ye.ipv6Cidr,
|
|
1969
|
-
ipv4: Ye.ipv4address,
|
|
1970
|
-
ipv6: Ye.ipv6address,
|
|
1971
|
-
ipvfuture: Ye.ipvFuture
|
|
1972
|
-
};
|
|
1973
|
-
|
|
1974
|
-
function _e(e) {
|
|
1975
|
-
const t = Ye;
|
|
1976
|
-
const r = e.allowQuerySquareBrackets ? t.queryWithSquareBrackets : t.query;
|
|
1977
|
-
const n = "(?:\\?" + r + ")?" + "(?:#" + t.fragment + ")?";
|
|
1978
|
-
const o = e.domain ? t.relativeRefCapture : t.relativeRef;
|
|
1979
|
-
if (e.relativeOnly) {
|
|
1980
|
-
return Ve(o + n);
|
|
1981
|
-
}
|
|
1982
|
-
let s = "";
|
|
1983
|
-
if (e.scheme) {
|
|
1984
|
-
E(e.scheme instanceof RegExp || typeof e.scheme === "string" || Array.isArray(e.scheme), "scheme must be a RegExp, String, or Array");
|
|
1985
|
-
const r = [].concat(e.scheme);
|
|
1986
|
-
E(r.length >= 1, "scheme must have at least 1 scheme specified");
|
|
1987
|
-
const n = [];
|
|
1988
|
-
for (let e = 0; e < r.length; ++e) {
|
|
1989
|
-
const o = r[e];
|
|
1990
|
-
E(o instanceof RegExp || typeof o === "string", "scheme at position " + e + " must be a RegExp or String");
|
|
1991
|
-
if (o instanceof RegExp) {
|
|
1992
|
-
n.push(o.source.toString());
|
|
1993
|
-
} else {
|
|
1994
|
-
E(t.schemeRegex.test(o), "scheme at position " + e + " must be a valid scheme");
|
|
1995
|
-
n.push(W(o));
|
|
1996
|
-
}
|
|
1997
|
-
}
|
|
1998
|
-
s = n.join("|");
|
|
1999
|
-
}
|
|
2000
|
-
const i = s ? "(?:" + s + ")" : t.scheme;
|
|
2001
|
-
const a = "(?:" + i + ":" + (e.domain ? t.hierPartCapture : t.hierPart) + ")";
|
|
2002
|
-
const c = e.allowRelative ? "(?:" + a + "|" + o + ")" : a;
|
|
2003
|
-
return Ve(c + n, s);
|
|
2004
|
-
}
|
|
2005
|
-
|
|
2006
|
-
function Ve(e, t = null) {
|
|
2007
|
-
e = `(?=.)(?!https?:/(?:$|[^/]))(?!https?:///)(?!https?:[^/])${e}`;
|
|
2008
|
-
return {
|
|
2009
|
-
raw: e,
|
|
2010
|
-
regex: new RegExp(`^${e}$`),
|
|
2011
|
-
scheme: t
|
|
2012
|
-
};
|
|
2013
|
-
}
|
|
2014
|
-
|
|
2015
|
-
const We = _e({});
|
|
2016
|
-
|
|
2017
|
-
function je(e = {}) {
|
|
2018
|
-
if (e.scheme || e.allowRelative || e.relativeOnly || e.allowQuerySquareBrackets || e.domain) {
|
|
2019
|
-
return _e(e);
|
|
2020
|
-
}
|
|
2021
|
-
return We;
|
|
2022
|
-
}
|
|
2023
|
-
|
|
2024
|
-
function Ze(e = {}) {
|
|
2025
|
-
const t = e.cidr || "optional";
|
|
2026
|
-
E([ "required", "optional", "forbidden" ].includes(t), "options.cidr must be one of required, optional, forbidden");
|
|
2027
|
-
E(e.version === undefined || typeof e.version === "string" || Array.isArray(e.version), "options.version must be a string or an array of string");
|
|
2028
|
-
let r = e.version || [ "ipv4", "ipv6", "ipvfuture" ];
|
|
2029
|
-
if (!Array.isArray(r)) {
|
|
2030
|
-
r = [ r ];
|
|
2031
|
-
}
|
|
2032
|
-
E(r.length >= 1, "options.version must have at least 1 version specified");
|
|
2033
|
-
for (const e of r) {
|
|
2034
|
-
E(typeof e === "string" && e === e.toLowerCase(), "Invalid options.version value");
|
|
2035
|
-
E([ "ipv4", "ipv6", "ipvfuture" ].includes(e), "options.version contains unknown version " + e + " - must be one of ipv4, ipv6, ipvfuture");
|
|
2036
|
-
}
|
|
2037
|
-
r = Array.from(new Set(r));
|
|
2038
|
-
const n = r.map(e => {
|
|
2039
|
-
if (t === "forbidden") {
|
|
2040
|
-
return xe[e];
|
|
2041
|
-
}
|
|
2042
|
-
const r = `\\/${e === "ipv4" ? xe.v4Cidr : xe.v6Cidr}`;
|
|
2043
|
-
if (t === "required") {
|
|
2044
|
-
return `${xe[e]}${r}`;
|
|
2045
|
-
}
|
|
2046
|
-
return `${xe[e]}(?:${r})?`;
|
|
2047
|
-
});
|
|
2048
|
-
const o = `(?:${n.join("|")})`;
|
|
2049
|
-
const s = new RegExp(`^${o}$`);
|
|
2050
|
-
return {
|
|
2051
|
-
cidr: t,
|
|
2052
|
-
versions: r,
|
|
2053
|
-
regex: s,
|
|
2054
|
-
raw: o
|
|
2055
|
-
};
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
const Je = {
|
|
2059
|
-
0: 0,
|
|
2060
|
-
1: 1,
|
|
2061
|
-
2: 2,
|
|
2062
|
-
3: 3,
|
|
2063
|
-
4: 4,
|
|
2064
|
-
5: 5,
|
|
2065
|
-
6: 6,
|
|
2066
|
-
7: 7,
|
|
2067
|
-
8: 8,
|
|
2068
|
-
9: 9,
|
|
2069
|
-
a: 10,
|
|
2070
|
-
A: 10,
|
|
2071
|
-
b: 11,
|
|
2072
|
-
B: 11,
|
|
2073
|
-
c: 12,
|
|
2074
|
-
C: 12,
|
|
2075
|
-
d: 13,
|
|
2076
|
-
D: 13,
|
|
2077
|
-
e: 14,
|
|
2078
|
-
E: 14,
|
|
2079
|
-
f: 15,
|
|
2080
|
-
F: 15
|
|
2081
|
-
};
|
|
2082
|
-
|
|
2083
|
-
const ke = {
|
|
2084
|
-
accept: 12,
|
|
2085
|
-
reject: 0,
|
|
2086
|
-
data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 10, 9, 9, 9, 11, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 24, 36, 48, 60, 72, 84, 96, 0, 12, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 63, 63, 63, 0, 31, 15, 15, 15, 7, 7, 7 ]
|
|
2087
|
-
};
|
|
2088
|
-
|
|
2089
|
-
function Qe(e) {
|
|
2090
|
-
let t = e.indexOf("%");
|
|
2091
|
-
if (t === -1) {
|
|
2092
|
-
return e;
|
|
2093
|
-
}
|
|
2094
|
-
let r = "";
|
|
2095
|
-
let n = 0;
|
|
2096
|
-
let o = 0;
|
|
2097
|
-
let s = t;
|
|
2098
|
-
let i = ke.accept;
|
|
2099
|
-
while (t > -1 && t < e.length) {
|
|
2100
|
-
const a = $e(e[t + 1], 4);
|
|
2101
|
-
const c = $e(e[t + 2], 0);
|
|
2102
|
-
const A = a | c;
|
|
2103
|
-
const l = ke.data[A];
|
|
2104
|
-
i = ke.data[256 + i + l];
|
|
2105
|
-
o = o << 6 | A & ke.data[364 + l];
|
|
2106
|
-
if (i === ke.accept) {
|
|
2107
|
-
r += e.slice(n, s);
|
|
2108
|
-
r += o <= 65535 ? String.fromCharCode(o) : String.fromCharCode(55232 + (o >> 10), 56320 + (o & 1023));
|
|
2109
|
-
o = 0;
|
|
2110
|
-
n = t + 3;
|
|
2111
|
-
t = e.indexOf("%", n);
|
|
2112
|
-
s = t;
|
|
2113
|
-
continue;
|
|
2114
|
-
}
|
|
2115
|
-
if (i === ke.reject) {
|
|
2116
|
-
return null;
|
|
2117
|
-
}
|
|
2118
|
-
t += 3;
|
|
2119
|
-
if (t >= e.length || e[t] !== "%") {
|
|
2120
|
-
return null;
|
|
2121
|
-
}
|
|
2122
|
-
}
|
|
2123
|
-
return r + e.slice(n);
|
|
2124
|
-
}
|
|
2125
|
-
|
|
2126
|
-
function $e(e, t) {
|
|
2127
|
-
const r = Je[e];
|
|
2128
|
-
return r === undefined ? 255 : r << t;
|
|
2129
|
-
}
|
|
2130
|
-
|
|
2131
|
-
const qe = Object.freeze(Object.defineProperty({
|
|
2132
|
-
__proto__: null,
|
|
2133
|
-
analyzeDomain: he,
|
|
2134
|
-
analyzeEmail: Ue,
|
|
2135
|
-
errorCodes: Ie,
|
|
2136
|
-
ipRegex: Ze,
|
|
2137
|
-
isDomainValid: Ge,
|
|
2138
|
-
isEmailValid: Xe,
|
|
2139
|
-
uriDecode: Qe,
|
|
2140
|
-
uriRegex: je,
|
|
2141
|
-
validateDomainOptions: ye
|
|
2142
|
-
}, Symbol.toStringTag, {
|
|
2143
|
-
value: "Module"
|
|
2144
|
-
}));
|
|
2145
|
-
|
|
2146
|
-
const ze = e.getAugmentedNamespace(qe);
|
|
2147
|
-
|
|
2148
|
-
exports.commonjs = {};
|
|
2149
|
-
|
|
2150
|
-
var et = {};
|
|
2151
|
-
|
|
2152
|
-
Object.defineProperty(et, "__esModule", {
|
|
8
|
+
Object.defineProperty(t, "__esModule", {
|
|
2153
9
|
value: true
|
|
2154
10
|
});
|
|
2155
11
|
|
|
2156
|
-
|
|
12
|
+
exports.AfterRecover_2 = t.AfterRecover = s;
|
|
2157
13
|
|
|
2158
|
-
et.TLDS = [ "AAA", "AARP", "ABB", "ABBOTT", "ABBVIE", "ABC", "ABLE", "ABOGADO", "ABUDHABI", "AC", "ACADEMY", "ACCENTURE", "ACCOUNTANT", "ACCOUNTANTS", "ACO", "ACTOR", "AD", "ADS", "ADULT", "AE", "AEG", "AERO", "AETNA", "AF", "AFL", "AFRICA", "AG", "AGAKHAN", "AGENCY", "AI", "AIG", "AIRBUS", "AIRFORCE", "AIRTEL", "AKDN", "AL", "ALIBABA", "ALIPAY", "ALLFINANZ", "ALLSTATE", "ALLY", "ALSACE", "ALSTOM", "AM", "AMAZON", "AMERICANEXPRESS", "AMERICANFAMILY", "AMEX", "AMFAM", "AMICA", "AMSTERDAM", "ANALYTICS", "ANDROID", "ANQUAN", "ANZ", "AO", "AOL", "APARTMENTS", "APP", "APPLE", "AQ", "AQUARELLE", "AR", "ARAB", "ARAMCO", "ARCHI", "ARMY", "ARPA", "ART", "ARTE", "AS", "ASDA", "ASIA", "ASSOCIATES", "AT", "ATHLETA", "ATTORNEY", "AU", "AUCTION", "AUDI", "AUDIBLE", "AUDIO", "AUSPOST", "AUTHOR", "AUTO", "AUTOS", "AW", "AWS", "AX", "AXA", "AZ", "AZURE", "BA", "BABY", "BAIDU", "BANAMEX", "BAND", "BANK", "BAR", "BARCELONA", "BARCLAYCARD", "BARCLAYS", "BAREFOOT", "BARGAINS", "BASEBALL", "BASKETBALL", "BAUHAUS", "BAYERN", "BB", "BBC", "BBT", "BBVA", "BCG", "BCN", "BD", "BE", "BEATS", "BEAUTY", "BEER", "BERLIN", "BEST", "BESTBUY", "BET", "BF", "BG", "BH", "BHARTI", "BI", "BIBLE", "BID", "BIKE", "BING", "BINGO", "BIO", "BIZ", "BJ", "BLACK", "BLACKFRIDAY", "BLOCKBUSTER", "BLOG", "BLOOMBERG", "BLUE", "BM", "BMS", "BMW", "BN", "BNPPARIBAS", "BO", "BOATS", "BOEHRINGER", "BOFA", "BOM", "BOND", "BOO", "BOOK", "BOOKING", "BOSCH", "BOSTIK", "BOSTON", "BOT", "BOUTIQUE", "BOX", "BR", "BRADESCO", "BRIDGESTONE", "BROADWAY", "BROKER", "BROTHER", "BRUSSELS", "BS", "BT", "BUILD", "BUILDERS", "BUSINESS", "BUY", "BUZZ", "BV", "BW", "BY", "BZ", "BZH", "CA", "CAB", "CAFE", "CAL", "CALL", "CALVINKLEIN", "CAM", "CAMERA", "CAMP", "CANON", "CAPETOWN", "CAPITAL", "CAPITALONE", "CAR", "CARAVAN", "CARDS", "CARE", "CAREER", "CAREERS", "CARS", "CASA", "CASE", "CASH", "CASINO", "CAT", "CATERING", "CATHOLIC", "CBA", "CBN", "CBRE", "CC", "CD", "CENTER", "CEO", "CERN", "CF", "CFA", "CFD", "CG", "CH", "CHANEL", "CHANNEL", "CHARITY", "CHASE", "CHAT", "CHEAP", "CHINTAI", "CHRISTMAS", "CHROME", "CHURCH", "CI", "CIPRIANI", "CIRCLE", "CISCO", "CITADEL", "CITI", "CITIC", "CITY", "CK", "CL", "CLAIMS", "CLEANING", "CLICK", "CLINIC", "CLINIQUE", "CLOTHING", "CLOUD", "CLUB", "CLUBMED", "CM", "CN", "CO", "COACH", "CODES", "COFFEE", "COLLEGE", "COLOGNE", "COM", "COMMBANK", "COMMUNITY", "COMPANY", "COMPARE", "COMPUTER", "COMSEC", "CONDOS", "CONSTRUCTION", "CONSULTING", "CONTACT", "CONTRACTORS", "COOKING", "COOL", "COOP", "CORSICA", "COUNTRY", "COUPON", "COUPONS", "COURSES", "CPA", "CR", "CREDIT", "CREDITCARD", "CREDITUNION", "CRICKET", "CROWN", "CRS", "CRUISE", "CRUISES", "CU", "CUISINELLA", "CV", "CW", "CX", "CY", "CYMRU", "CYOU", "CZ", "DAD", "DANCE", "DATA", "DATE", "DATING", "DATSUN", "DAY", "DCLK", "DDS", "DE", "DEAL", "DEALER", "DEALS", "DEGREE", "DELIVERY", "DELL", "DELOITTE", "DELTA", "DEMOCRAT", "DENTAL", "DENTIST", "DESI", "DESIGN", "DEV", "DHL", "DIAMONDS", "DIET", "DIGITAL", "DIRECT", "DIRECTORY", "DISCOUNT", "DISCOVER", "DISH", "DIY", "DJ", "DK", "DM", "DNP", "DO", "DOCS", "DOCTOR", "DOG", "DOMAINS", "DOT", "DOWNLOAD", "DRIVE", "DTV", "DUBAI", "DUPONT", "DURBAN", "DVAG", "DVR", "DZ", "EARTH", "EAT", "EC", "ECO", "EDEKA", "EDU", "EDUCATION", "EE", "EG", "EMAIL", "EMERCK", "ENERGY", "ENGINEER", "ENGINEERING", "ENTERPRISES", "EPSON", "EQUIPMENT", "ER", "ERICSSON", "ERNI", "ES", "ESQ", "ESTATE", "ET", "EU", "EUROVISION", "EUS", "EVENTS", "EXCHANGE", "EXPERT", "EXPOSED", "EXPRESS", "EXTRASPACE", "FAGE", "FAIL", "FAIRWINDS", "FAITH", "FAMILY", "FAN", "FANS", "FARM", "FARMERS", "FASHION", "FAST", "FEDEX", "FEEDBACK", "FERRARI", "FERRERO", "FI", "FIDELITY", "FIDO", "FILM", "FINAL", "FINANCE", "FINANCIAL", "FIRE", "FIRESTONE", "FIRMDALE", "FISH", "FISHING", "FIT", "FITNESS", "FJ", "FK", "FLICKR", "FLIGHTS", "FLIR", "FLORIST", "FLOWERS", "FLY", "FM", "FO", "FOO", "FOOD", "FOOTBALL", "FORD", "FOREX", "FORSALE", "FORUM", "FOUNDATION", "FOX", "FR", "FREE", "FRESENIUS", "FRL", "FROGANS", "FRONTIER", "FTR", "FUJITSU", "FUN", "FUND", "FURNITURE", "FUTBOL", "FYI", "GA", "GAL", "GALLERY", "GALLO", "GALLUP", "GAME", "GAMES", "GAP", "GARDEN", "GAY", "GB", "GBIZ", "GD", "GDN", "GE", "GEA", "GENT", "GENTING", "GEORGE", "GF", "GG", "GGEE", "GH", "GI", "GIFT", "GIFTS", "GIVES", "GIVING", "GL", "GLASS", "GLE", "GLOBAL", "GLOBO", "GM", "GMAIL", "GMBH", "GMO", "GMX", "GN", "GODADDY", "GOLD", "GOLDPOINT", "GOLF", "GOO", "GOODYEAR", "GOOG", "GOOGLE", "GOP", "GOT", "GOV", "GP", "GQ", "GR", "GRAINGER", "GRAPHICS", "GRATIS", "GREEN", "GRIPE", "GROCERY", "GROUP", "GS", "GT", "GU", "GUCCI", "GUGE", "GUIDE", "GUITARS", "GURU", "GW", "GY", "HAIR", "HAMBURG", "HANGOUT", "HAUS", "HBO", "HDFC", "HDFCBANK", "HEALTH", "HEALTHCARE", "HELP", "HELSINKI", "HERE", "HERMES", "HIPHOP", "HISAMITSU", "HITACHI", "HIV", "HK", "HKT", "HM", "HN", "HOCKEY", "HOLDINGS", "HOLIDAY", "HOMEDEPOT", "HOMEGOODS", "HOMES", "HOMESENSE", "HONDA", "HORSE", "HOSPITAL", "HOST", "HOSTING", "HOT", "HOTELS", "HOTMAIL", "HOUSE", "HOW", "HR", "HSBC", "HT", "HU", "HUGHES", "HYATT", "HYUNDAI", "IBM", "ICBC", "ICE", "ICU", "ID", "IE", "IEEE", "IFM", "IKANO", "IL", "IM", "IMAMAT", "IMDB", "IMMO", "IMMOBILIEN", "IN", "INC", "INDUSTRIES", "INFINITI", "INFO", "ING", "INK", "INSTITUTE", "INSURANCE", "INSURE", "INT", "INTERNATIONAL", "INTUIT", "INVESTMENTS", "IO", "IPIRANGA", "IQ", "IR", "IRISH", "IS", "ISMAILI", "IST", "ISTANBUL", "IT", "ITAU", "ITV", "JAGUAR", "JAVA", "JCB", "JE", "JEEP", "JETZT", "JEWELRY", "JIO", "JLL", "JM", "JMP", "JNJ", "JO", "JOBS", "JOBURG", "JOT", "JOY", "JP", "JPMORGAN", "JPRS", "JUEGOS", "JUNIPER", "KAUFEN", "KDDI", "KE", "KERRYHOTELS", "KERRYPROPERTIES", "KFH", "KG", "KH", "KI", "KIA", "KIDS", "KIM", "KINDLE", "KITCHEN", "KIWI", "KM", "KN", "KOELN", "KOMATSU", "KOSHER", "KP", "KPMG", "KPN", "KR", "KRD", "KRED", "KUOKGROUP", "KW", "KY", "KYOTO", "KZ", "LA", "LACAIXA", "LAMBORGHINI", "LAMER", "LAND", "LANDROVER", "LANXESS", "LASALLE", "LAT", "LATINO", "LATROBE", "LAW", "LAWYER", "LB", "LC", "LDS", "LEASE", "LECLERC", "LEFRAK", "LEGAL", "LEGO", "LEXUS", "LGBT", "LI", "LIDL", "LIFE", "LIFEINSURANCE", "LIFESTYLE", "LIGHTING", "LIKE", "LILLY", "LIMITED", "LIMO", "LINCOLN", "LINK", "LIVE", "LIVING", "LK", "LLC", "LLP", "LOAN", "LOANS", "LOCKER", "LOCUS", "LOL", "LONDON", "LOTTE", "LOTTO", "LOVE", "LPL", "LPLFINANCIAL", "LR", "LS", "LT", "LTD", "LTDA", "LU", "LUNDBECK", "LUXE", "LUXURY", "LV", "LY", "MA", "MADRID", "MAIF", "MAISON", "MAKEUP", "MAN", "MANAGEMENT", "MANGO", "MAP", "MARKET", "MARKETING", "MARKETS", "MARRIOTT", "MARSHALLS", "MATTEL", "MBA", "MC", "MCKINSEY", "MD", "ME", "MED", "MEDIA", "MEET", "MELBOURNE", "MEME", "MEMORIAL", "MEN", "MENU", "MERCKMSD", "MG", "MH", "MIAMI", "MICROSOFT", "MIL", "MINI", "MINT", "MIT", "MITSUBISHI", "MK", "ML", "MLB", "MLS", "MM", "MMA", "MN", "MO", "MOBI", "MOBILE", "MODA", "MOE", "MOI", "MOM", "MONASH", "MONEY", "MONSTER", "MORMON", "MORTGAGE", "MOSCOW", "MOTO", "MOTORCYCLES", "MOV", "MOVIE", "MP", "MQ", "MR", "MS", "MSD", "MT", "MTN", "MTR", "MU", "MUSEUM", "MUSIC", "MV", "MW", "MX", "MY", "MZ", "NA", "NAB", "NAGOYA", "NAME", "NAVY", "NBA", "NC", "NE", "NEC", "NET", "NETBANK", "NETFLIX", "NETWORK", "NEUSTAR", "NEW", "NEWS", "NEXT", "NEXTDIRECT", "NEXUS", "NF", "NFL", "NG", "NGO", "NHK", "NI", "NICO", "NIKE", "NIKON", "NINJA", "NISSAN", "NISSAY", "NL", "NO", "NOKIA", "NORTON", "NOW", "NOWRUZ", "NOWTV", "NP", "NR", "NRA", "NRW", "NTT", "NU", "NYC", "NZ", "OBI", "OBSERVER", "OFFICE", "OKINAWA", "OLAYAN", "OLAYANGROUP", "OLLO", "OM", "OMEGA", "ONE", "ONG", "ONL", "ONLINE", "OOO", "OPEN", "ORACLE", "ORANGE", "ORG", "ORGANIC", "ORIGINS", "OSAKA", "OTSUKA", "OTT", "OVH", "PA", "PAGE", "PANASONIC", "PARIS", "PARS", "PARTNERS", "PARTS", "PARTY", "PAY", "PCCW", "PE", "PET", "PF", "PFIZER", "PG", "PH", "PHARMACY", "PHD", "PHILIPS", "PHONE", "PHOTO", "PHOTOGRAPHY", "PHOTOS", "PHYSIO", "PICS", "PICTET", "PICTURES", "PID", "PIN", "PING", "PINK", "PIONEER", "PIZZA", "PK", "PL", "PLACE", "PLAY", "PLAYSTATION", "PLUMBING", "PLUS", "PM", "PN", "PNC", "POHL", "POKER", "POLITIE", "PORN", "POST", "PR", "PRAXI", "PRESS", "PRIME", "PRO", "PROD", "PRODUCTIONS", "PROF", "PROGRESSIVE", "PROMO", "PROPERTIES", "PROPERTY", "PROTECTION", "PRU", "PRUDENTIAL", "PS", "PT", "PUB", "PW", "PWC", "PY", "QA", "QPON", "QUEBEC", "QUEST", "RACING", "RADIO", "RE", "READ", "REALESTATE", "REALTOR", "REALTY", "RECIPES", "RED", "REDUMBRELLA", "REHAB", "REISE", "REISEN", "REIT", "RELIANCE", "REN", "RENT", "RENTALS", "REPAIR", "REPORT", "REPUBLICAN", "REST", "RESTAURANT", "REVIEW", "REVIEWS", "REXROTH", "RICH", "RICHARDLI", "RICOH", "RIL", "RIO", "RIP", "RO", "ROCKS", "RODEO", "ROGERS", "ROOM", "RS", "RSVP", "RU", "RUGBY", "RUHR", "RUN", "RW", "RWE", "RYUKYU", "SA", "SAARLAND", "SAFE", "SAFETY", "SAKURA", "SALE", "SALON", "SAMSCLUB", "SAMSUNG", "SANDVIK", "SANDVIKCOROMANT", "SANOFI", "SAP", "SARL", "SAS", "SAVE", "SAXO", "SB", "SBI", "SBS", "SC", "SCB", "SCHAEFFLER", "SCHMIDT", "SCHOLARSHIPS", "SCHOOL", "SCHULE", "SCHWARZ", "SCIENCE", "SCOT", "SD", "SE", "SEARCH", "SEAT", "SECURE", "SECURITY", "SEEK", "SELECT", "SENER", "SERVICES", "SEVEN", "SEW", "SEX", "SEXY", "SFR", "SG", "SH", "SHANGRILA", "SHARP", "SHELL", "SHIA", "SHIKSHA", "SHOES", "SHOP", "SHOPPING", "SHOUJI", "SHOW", "SI", "SILK", "SINA", "SINGLES", "SITE", "SJ", "SK", "SKI", "SKIN", "SKY", "SKYPE", "SL", "SLING", "SM", "SMART", "SMILE", "SN", "SNCF", "SO", "SOCCER", "SOCIAL", "SOFTBANK", "SOFTWARE", "SOHU", "SOLAR", "SOLUTIONS", "SONG", "SONY", "SOY", "SPA", "SPACE", "SPORT", "SPOT", "SR", "SRL", "SS", "ST", "STADA", "STAPLES", "STAR", "STATEBANK", "STATEFARM", "STC", "STCGROUP", "STOCKHOLM", "STORAGE", "STORE", "STREAM", "STUDIO", "STUDY", "STYLE", "SU", "SUCKS", "SUPPLIES", "SUPPLY", "SUPPORT", "SURF", "SURGERY", "SUZUKI", "SV", "SWATCH", "SWISS", "SX", "SY", "SYDNEY", "SYSTEMS", "SZ", "TAB", "TAIPEI", "TALK", "TAOBAO", "TARGET", "TATAMOTORS", "TATAR", "TATTOO", "TAX", "TAXI", "TC", "TCI", "TD", "TDK", "TEAM", "TECH", "TECHNOLOGY", "TEL", "TEMASEK", "TENNIS", "TEVA", "TF", "TG", "TH", "THD", "THEATER", "THEATRE", "TIAA", "TICKETS", "TIENDA", "TIPS", "TIRES", "TIROL", "TJ", "TJMAXX", "TJX", "TK", "TKMAXX", "TL", "TM", "TMALL", "TN", "TO", "TODAY", "TOKYO", "TOOLS", "TOP", "TORAY", "TOSHIBA", "TOTAL", "TOURS", "TOWN", "TOYOTA", "TOYS", "TR", "TRADE", "TRADING", "TRAINING", "TRAVEL", "TRAVELERS", "TRAVELERSINSURANCE", "TRUST", "TRV", "TT", "TUBE", "TUI", "TUNES", "TUSHU", "TV", "TVS", "TW", "TZ", "UA", "UBANK", "UBS", "UG", "UK", "UNICOM", "UNIVERSITY", "UNO", "UOL", "UPS", "US", "UY", "UZ", "VA", "VACATIONS", "VANA", "VANGUARD", "VC", "VE", "VEGAS", "VENTURES", "VERISIGN", "VERSICHERUNG", "VET", "VG", "VI", "VIAJES", "VIDEO", "VIG", "VIKING", "VILLAS", "VIN", "VIP", "VIRGIN", "VISA", "VISION", "VIVA", "VIVO", "VLAANDEREN", "VN", "VODKA", "VOLVO", "VOTE", "VOTING", "VOTO", "VOYAGE", "VU", "WALES", "WALMART", "WALTER", "WANG", "WANGGOU", "WATCH", "WATCHES", "WEATHER", "WEATHERCHANNEL", "WEBCAM", "WEBER", "WEBSITE", "WED", "WEDDING", "WEIBO", "WEIR", "WF", "WHOSWHO", "WIEN", "WIKI", "WILLIAMHILL", "WIN", "WINDOWS", "WINE", "WINNERS", "WME", "WOLTERSKLUWER", "WOODSIDE", "WORK", "WORKS", "WORLD", "WOW", "WS", "WTC", "WTF", "XBOX", "XEROX", "XIHUAN", "XIN", "XN--11B4C3D", "XN--1CK2E1B", "XN--1QQW23A", "XN--2SCRJ9C", "XN--30RR7Y", "XN--3BST00M", "XN--3DS443G", "XN--3E0B707E", "XN--3HCRJ9C", "XN--3PXU8K", "XN--42C2D9A", "XN--45BR5CYL", "XN--45BRJ9C", "XN--45Q11C", "XN--4DBRK0CE", "XN--4GBRIM", "XN--54B7FTA0CC", "XN--55QW42G", "XN--55QX5D", "XN--5SU34J936BGSG", "XN--5TZM5G", "XN--6FRZ82G", "XN--6QQ986B3XL", "XN--80ADXHKS", "XN--80AO21A", "XN--80AQECDR1A", "XN--80ASEHDB", "XN--80ASWG", "XN--8Y0A063A", "XN--90A3AC", "XN--90AE", "XN--90AIS", "XN--9DBQ2A", "XN--9ET52U", "XN--9KRT00A", "XN--B4W605FERD", "XN--BCK1B9A5DRE4C", "XN--C1AVG", "XN--C2BR7G", "XN--CCK2B3B", "XN--CCKWCXETD", "XN--CG4BKI", "XN--CLCHC0EA0B2G2A9GCD", "XN--CZR694B", "XN--CZRS0T", "XN--CZRU2D", "XN--D1ACJ3B", "XN--D1ALF", "XN--E1A4C", "XN--ECKVDTC9D", "XN--EFVY88H", "XN--FCT429K", "XN--FHBEI", "XN--FIQ228C5HS", "XN--FIQ64B", "XN--FIQS8S", "XN--FIQZ9S", "XN--FJQ720A", "XN--FLW351E", "XN--FPCRJ9C3D", "XN--FZC2C9E2C", "XN--FZYS8D69UVGM", "XN--G2XX48C", "XN--GCKR3F0F", "XN--GECRJ9C", "XN--GK3AT1E", "XN--H2BREG3EVE", "XN--H2BRJ9C", "XN--H2BRJ9C8C", "XN--HXT814E", "XN--I1B6B1A6A2E", "XN--IMR513N", "XN--IO0A7I", "XN--J1AEF", "XN--J1AMH", "XN--J6W193G", "XN--JLQ480N2RG", "XN--JVR189M", "XN--KCRX77D1X4A", "XN--KPRW13D", "XN--KPRY57D", "XN--KPUT3I", "XN--L1ACC", "XN--LGBBAT1AD8J", "XN--MGB9AWBF", "XN--MGBA3A3EJT", "XN--MGBA3A4F16A", "XN--MGBA7C0BBN0A", "XN--MGBAAM7A8H", "XN--MGBAB2BD", "XN--MGBAH1A3HJKRD", "XN--MGBAI9AZGQP6J", "XN--MGBAYH7GPA", "XN--MGBBH1A", "XN--MGBBH1A71E", "XN--MGBC0A9AZCG", "XN--MGBCA7DZDO", "XN--MGBCPQ6GPA1A", "XN--MGBERP4A5D4AR", "XN--MGBGU82A", "XN--MGBI4ECEXP", "XN--MGBPL2FH", "XN--MGBT3DHD", "XN--MGBTX2B", "XN--MGBX4CD0AB", "XN--MIX891F", "XN--MK1BU44C", "XN--MXTQ1M", "XN--NGBC5AZD", "XN--NGBE9E0A", "XN--NGBRX", "XN--NODE", "XN--NQV7F", "XN--NQV7FS00EMA", "XN--NYQY26A", "XN--O3CW4H", "XN--OGBPF8FL", "XN--OTU796D", "XN--P1ACF", "XN--P1AI", "XN--PGBS0DH", "XN--PSSY2U", "XN--Q7CE6A", "XN--Q9JYB4C", "XN--QCKA1PMC", "XN--QXA6A", "XN--QXAM", "XN--RHQV96G", "XN--ROVU88B", "XN--RVC1E0AM3E", "XN--S9BRJ9C", "XN--SES554G", "XN--T60B56A", "XN--TCKWE", "XN--TIQ49XQYJ", "XN--UNUP4Y", "XN--VERMGENSBERATER-CTB", "XN--VERMGENSBERATUNG-PWB", "XN--VHQUV", "XN--VUQ861B", "XN--W4R85EL8FHU5DNRA", "XN--W4RS40L", "XN--WGBH1C", "XN--WGBL6A", "XN--XHQ521B", "XN--XKC2AL3HYE2A", "XN--XKC2DL3A5EE0H", "XN--Y9A3AQ", "XN--YFRO4I67O", "XN--YGBI2AMMX", "XN--ZFR164B", "XXX", "XYZ", "YACHTS", "YAHOO", "YAMAXUN", "YANDEX", "YE", "YODOBASHI", "YOGA", "YOKOHAMA", "YOU", "YOUTUBE", "YT", "YUN", "ZA", "ZAPPOS", "ZARA", "ZERO", "ZIP", "ZM", "ZONE", "ZUERICH", "ZW" ];
|
|
14
|
+
const r = e.requireGlobals();
|
|
2159
15
|
|
|
2160
|
-
|
|
2161
|
-
value: true
|
|
2162
|
-
});
|
|
2163
|
-
|
|
2164
|
-
exports.commonjs.tlds = void 0;
|
|
2165
|
-
|
|
2166
|
-
const tt = et;
|
|
16
|
+
const n = e.EventListenerTypes;
|
|
2167
17
|
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
18
|
+
function s() {
|
|
19
|
+
return function(e, t) {
|
|
20
|
+
(0, r.getMetadataArgsStorage)().entityListeners.push({
|
|
21
|
+
target: e.constructor,
|
|
22
|
+
propertyName: t,
|
|
23
|
+
type: n.EventListenerTypes.AFTER_RECOVER
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
}
|