lakutata 2.0.95 → 2.0.96
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 +56 -44
- package/com/cacher.mjs +56 -44
- package/com/database.cjs +74 -74
- package/com/database.mjs +74 -74
- package/com/docker.cjs +85 -85
- package/com/docker.mjs +85 -85
- package/com/entrypoint.cjs +44 -44
- package/com/entrypoint.mjs +44 -44
- package/com/logger.cjs +51 -51
- package/com/logger.mjs +51 -51
- package/com/monitor.cjs +32 -32
- package/com/monitor.mjs +32 -32
- package/decorator/asst.cjs +5 -5
- package/decorator/asst.mjs +5 -5
- package/decorator/ctrl.cjs +22 -22
- package/decorator/ctrl.mjs +22 -22
- package/decorator/di.cjs +17 -17
- package/decorator/di.mjs +17 -17
- package/decorator/dto.cjs +17 -17
- package/decorator/dto.mjs +17 -17
- package/decorator/orm.cjs +47 -47
- package/decorator/orm.mjs +47 -47
- package/dtos.cjs +17 -17
- package/dtos.mjs +17 -17
- package/helper.cjs +32 -32
- package/helper.mjs +32 -32
- package/lakutata.cjs +110 -110
- package/lakutata.mjs +110 -110
- package/orm.cjs +47 -47
- package/orm.mjs +48 -48
- package/package.json +1 -1
- package/provider/database.cjs +73 -73
- package/provider/database.mjs +73 -73
- package/provider/passwordHash.cjs +31 -31
- package/provider/passwordHash.mjs +31 -31
- package/src/components/Database.cjs +74 -74
- package/src/components/Database.mjs +74 -74
- package/src/components/Logger.cjs +51 -51
- package/src/components/Logger.mjs +51 -51
- package/src/components/cacher/Cacher.cjs +60 -48
- package/src/components/cacher/Cacher.mjs +60 -48
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +25 -11
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +31 -17
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +29 -15
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +38 -24
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +41 -27
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +37 -23
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +28 -14
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +26 -12
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +39 -25
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +29 -15
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +26 -12
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +26 -12
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +29 -15
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +29 -15
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -4
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -4
- 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 -4
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -4
- package/src/components/cacher/options/FileCacheOptions.cjs +17 -17
- package/src/components/cacher/options/FileCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MongoCacheOptions.mjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.cjs +17 -17
- package/src/components/cacher/options/MysqlCacheOptions.mjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.cjs +17 -17
- package/src/components/cacher/options/PostgresCacheOptions.mjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.cjs +17 -17
- package/src/components/cacher/options/RedisCacheOptions.mjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.cjs +17 -17
- package/src/components/cacher/options/SqliteCacheOptions.mjs +17 -17
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +85 -85
- package/src/components/docker/ConnectionOptionsBuilder.mjs +85 -85
- package/src/components/docker/Docker.cjs +85 -85
- package/src/components/docker/Docker.mjs +85 -85
- package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -4
- package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -4
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -4
- 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 +72 -72
- package/src/components/docker/lib/DockerContainer.mjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.cjs +72 -72
- package/src/components/docker/lib/DockerContainerTTY.mjs +72 -72
- package/src/components/docker/lib/DockerImage.cjs +30 -30
- package/src/components/docker/lib/DockerImage.mjs +30 -30
- 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 +17 -17
- package/src/components/docker/options/DockerPruneOptions.mjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +17 -17
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExecOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerKillOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerStopOptions.mjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +17 -17
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageBuildOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageExportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageImportOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePullOptions.mjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.cjs +17 -17
- package/src/components/docker/options/image/ImagePushOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.cjs +17 -17
- package/src/components/docker/options/image/ImageTagOptions.mjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +17 -17
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +17 -17
- 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 +44 -44
- package/src/components/entrypoint/Entrypoint.mjs +44 -44
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -4
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -4
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -4
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -4
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -4
- package/src/components/entrypoint/lib/AccessControl.cjs +30 -30
- package/src/components/entrypoint/lib/AccessControl.mjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.cjs +30 -30
- package/src/components/entrypoint/lib/AccessControlRule.mjs +30 -30
- package/src/components/entrypoint/lib/Controller.cjs +30 -30
- package/src/components/entrypoint/lib/Controller.mjs +30 -30
- package/src/components/monitor/AliveMonitor.cjs +31 -31
- package/src/components/monitor/AliveMonitor.mjs +31 -31
- package/src/components/monitor/CpuMonitor.cjs +32 -32
- package/src/components/monitor/CpuMonitor.mjs +32 -32
- package/src/components/monitor/EventLoopMonitor.cjs +31 -31
- package/src/components/monitor/EventLoopMonitor.mjs +31 -31
- package/src/components/monitor/HttpRequestMonitor.cjs +32 -32
- package/src/components/monitor/HttpRequestMonitor.mjs +32 -32
- package/src/components/monitor/MemoryMonitor.cjs +32 -32
- package/src/components/monitor/MemoryMonitor.mjs +32 -32
- 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 +2 -2
- package/src/constants/DIMetadataKey.mjs +2 -2
- package/src/constants/DTOMetadataKey.cjs +2 -2
- package/src/constants/DTOMetadataKey.mjs +2 -2
- package/src/decorators/asst/After.cjs +4 -4
- package/src/decorators/asst/After.mjs +4 -4
- package/src/decorators/asst/Before.cjs +4 -4
- package/src/decorators/asst/Before.mjs +4 -4
- package/src/decorators/ctrl/CLIAction.cjs +22 -22
- package/src/decorators/ctrl/CLIAction.mjs +22 -22
- package/src/decorators/ctrl/HTTPAction.cjs +22 -22
- package/src/decorators/ctrl/HTTPAction.mjs +22 -22
- package/src/decorators/ctrl/ServiceAction.cjs +22 -22
- package/src/decorators/ctrl/ServiceAction.mjs +22 -22
- package/src/decorators/ctrl/http/DELETE.cjs +22 -22
- package/src/decorators/ctrl/http/DELETE.mjs +22 -22
- package/src/decorators/ctrl/http/GET.cjs +22 -22
- package/src/decorators/ctrl/http/GET.mjs +22 -22
- package/src/decorators/ctrl/http/HEAD.cjs +22 -22
- package/src/decorators/ctrl/http/HEAD.mjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.cjs +22 -22
- package/src/decorators/ctrl/http/OPTIONS.mjs +22 -22
- package/src/decorators/ctrl/http/PATCH.cjs +22 -22
- package/src/decorators/ctrl/http/PATCH.mjs +22 -22
- package/src/decorators/ctrl/http/POST.cjs +22 -22
- package/src/decorators/ctrl/http/POST.mjs +22 -22
- package/src/decorators/ctrl/http/PUT.cjs +22 -22
- package/src/decorators/ctrl/http/PUT.mjs +22 -22
- package/src/decorators/di/Autoload.cjs +2 -2
- package/src/decorators/di/Autoload.mjs +2 -2
- package/src/decorators/di/Configurable.cjs +17 -17
- package/src/decorators/di/Configurable.mjs +17 -17
- package/src/decorators/di/Inject.cjs +17 -17
- package/src/decorators/di/Inject.mjs +17 -17
- package/src/decorators/di/Lifetime.cjs +5 -5
- package/src/decorators/di/Lifetime.mjs +5 -5
- package/src/decorators/dto/Accept.cjs +17 -17
- package/src/decorators/dto/Accept.mjs +17 -17
- package/src/decorators/dto/Expect.cjs +17 -17
- package/src/decorators/dto/Expect.mjs +17 -17
- package/src/decorators/dto/IndexSignature.cjs +17 -17
- package/src/decorators/dto/IndexSignature.mjs +17 -17
- package/src/decorators/dto/Return.cjs +17 -17
- package/src/decorators/dto/Return.mjs +17 -17
- package/src/decorators/orm/AfterInsert.cjs +46 -46
- package/src/decorators/orm/AfterInsert.mjs +46 -46
- package/src/decorators/orm/AfterLoad.cjs +46 -46
- package/src/decorators/orm/AfterLoad.mjs +46 -46
- package/src/decorators/orm/AfterRecover.cjs +46 -46
- package/src/decorators/orm/AfterRecover.mjs +46 -46
- package/src/decorators/orm/AfterRemove.cjs +46 -46
- package/src/decorators/orm/AfterRemove.mjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.cjs +46 -46
- package/src/decorators/orm/AfterSoftRemove.mjs +46 -46
- package/src/decorators/orm/AfterUpdate.cjs +46 -46
- package/src/decorators/orm/AfterUpdate.mjs +46 -46
- package/src/decorators/orm/BeforeInsert.cjs +46 -46
- package/src/decorators/orm/BeforeInsert.mjs +46 -46
- package/src/decorators/orm/BeforeRecover.cjs +46 -46
- package/src/decorators/orm/BeforeRecover.mjs +46 -46
- package/src/decorators/orm/BeforeRemove.cjs +46 -46
- package/src/decorators/orm/BeforeRemove.mjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.cjs +46 -46
- package/src/decorators/orm/BeforeSoftRemove.mjs +46 -46
- package/src/decorators/orm/BeforeUpdate.cjs +46 -46
- package/src/decorators/orm/BeforeUpdate.mjs +46 -46
- package/src/decorators/orm/Check.cjs +46 -46
- package/src/decorators/orm/Check.mjs +46 -46
- package/src/decorators/orm/ChildEntity.cjs +46 -46
- package/src/decorators/orm/ChildEntity.mjs +46 -46
- package/src/decorators/orm/Column.cjs +46 -46
- package/src/decorators/orm/Column.mjs +46 -46
- package/src/decorators/orm/CreateDateColumn.cjs +46 -46
- package/src/decorators/orm/CreateDateColumn.mjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.cjs +46 -46
- package/src/decorators/orm/DeleteDateColumn.mjs +46 -46
- package/src/decorators/orm/Entity.cjs +46 -46
- package/src/decorators/orm/Entity.mjs +46 -46
- package/src/decorators/orm/EventSubscriber.cjs +46 -46
- package/src/decorators/orm/EventSubscriber.mjs +46 -46
- package/src/decorators/orm/Exclusion.cjs +46 -46
- package/src/decorators/orm/Exclusion.mjs +46 -46
- package/src/decorators/orm/Generated.cjs +46 -46
- package/src/decorators/orm/Generated.mjs +46 -46
- package/src/decorators/orm/Index.cjs +46 -46
- package/src/decorators/orm/Index.mjs +46 -46
- package/src/decorators/orm/JoinColumn.cjs +46 -46
- package/src/decorators/orm/JoinColumn.mjs +46 -46
- package/src/decorators/orm/JoinTable.cjs +46 -46
- package/src/decorators/orm/JoinTable.mjs +46 -46
- package/src/decorators/orm/ManyToMany.cjs +46 -46
- package/src/decorators/orm/ManyToMany.mjs +46 -46
- package/src/decorators/orm/ManyToOne.cjs +46 -46
- package/src/decorators/orm/ManyToOne.mjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.cjs +46 -46
- package/src/decorators/orm/ObjectIdColumn.mjs +46 -46
- package/src/decorators/orm/OneToMany.cjs +46 -46
- package/src/decorators/orm/OneToMany.mjs +46 -46
- package/src/decorators/orm/OneToOne.cjs +46 -46
- package/src/decorators/orm/OneToOne.mjs +46 -46
- package/src/decorators/orm/PrimaryColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryColumn.mjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +46 -46
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +46 -46
- package/src/decorators/orm/RelationId.cjs +46 -46
- package/src/decorators/orm/RelationId.mjs +46 -46
- package/src/decorators/orm/TableInheritance.cjs +46 -46
- package/src/decorators/orm/TableInheritance.mjs +46 -46
- package/src/decorators/orm/Tree.cjs +46 -46
- package/src/decorators/orm/Tree.mjs +46 -46
- package/src/decorators/orm/TreeChildren.cjs +46 -46
- package/src/decorators/orm/TreeChildren.mjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.cjs +46 -46
- package/src/decorators/orm/TreeLevelColumn.mjs +46 -46
- package/src/decorators/orm/TreeParent.cjs +46 -46
- package/src/decorators/orm/TreeParent.mjs +46 -46
- package/src/decorators/orm/Unique.cjs +46 -46
- package/src/decorators/orm/Unique.mjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.cjs +46 -46
- package/src/decorators/orm/UpdateDateColumn.mjs +46 -46
- package/src/decorators/orm/VersionColumn.cjs +46 -46
- package/src/decorators/orm/VersionColumn.mjs +46 -46
- package/src/decorators/orm/ViewColumn.cjs +46 -46
- package/src/decorators/orm/ViewColumn.mjs +46 -46
- package/src/decorators/orm/ViewEntity.cjs +46 -46
- package/src/decorators/orm/ViewEntity.mjs +46 -46
- package/src/decorators/orm/VirtualColumn.cjs +46 -46
- package/src/decorators/orm/VirtualColumn.mjs +46 -46
- package/src/dto/PaginationResultDTO.cjs +17 -17
- package/src/dto/PaginationResultDTO.mjs +17 -17
- package/src/dto/PaginationSearchDTO.cjs +17 -17
- package/src/dto/PaginationSearchDTO.mjs +17 -17
- package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -4
- package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -4
- package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -4
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.cjs +4 -4
- package/src/exceptions/InvalidObjectTypeException.mjs +4 -4
- package/src/exceptions/MethodNotFoundException.cjs +4 -4
- package/src/exceptions/MethodNotFoundException.mjs +4 -4
- package/src/exceptions/alias/AliasExistsException.cjs +4 -4
- package/src/exceptions/alias/AliasExistsException.mjs +4 -4
- package/src/exceptions/alias/AliasNotFoundException.cjs +4 -4
- package/src/exceptions/alias/AliasNotFoundException.mjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -4
- package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.cjs +4 -4
- package/src/exceptions/di/DependencyInjectionException.mjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.cjs +4 -4
- package/src/exceptions/di/LifetimeLockedException.mjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -4
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -4
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -4
- package/src/exceptions/dto/InvalidValueException.cjs +4 -4
- package/src/exceptions/dto/InvalidValueException.mjs +4 -4
- 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 +30 -30
- package/src/lib/base/BaseObject.mjs +30 -30
- package/src/lib/base/Context.cjs +17 -17
- package/src/lib/base/Context.mjs +17 -17
- package/src/lib/base/EventEmitter.cjs +2 -2
- package/src/lib/base/EventEmitter.mjs +2 -2
- package/src/lib/base/abstracts/Exception.cjs +4 -4
- package/src/lib/base/abstracts/Exception.mjs +4 -4
- 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 +17 -17
- package/src/lib/base/internal/ActionOptions.mjs +17 -17
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +30 -30
- package/src/lib/base/internal/BasicInfo.cjs +4 -4
- package/src/lib/base/internal/BasicInfo.mjs +4 -4
- 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 +2 -2
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.cjs +2 -2
- package/src/lib/base/internal/ConstructorSymbol.mjs +2 -2
- package/src/lib/base/internal/ControllerEntrypoint.cjs +9 -9
- package/src/lib/base/internal/ControllerEntrypoint.mjs +9 -9
- package/src/lib/base/internal/DataValidator.cjs +13 -13
- package/src/lib/base/internal/DataValidator.mjs +13 -13
- 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 +17 -17
- package/src/lib/base/internal/FlexibleDTO.mjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +17 -17
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +17 -17
- 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 +4 -4
- package/src/lib/base/internal/MethodAssistantFunction.mjs +4 -4
- package/src/lib/base/internal/MethodValidation.cjs +17 -17
- package/src/lib/base/internal/MethodValidation.mjs +17 -17
- package/src/lib/base/internal/ModuleConfigLoader.cjs +30 -30
- package/src/lib/base/internal/ModuleConfigLoader.mjs +30 -30
- package/src/lib/base/internal/ObjectConfiguration.cjs +17 -17
- package/src/lib/base/internal/ObjectConfiguration.mjs +17 -17
- package/src/lib/base/internal/ObjectContainer.cjs +2 -2
- package/src/lib/base/internal/ObjectContainer.mjs +2 -2
- package/src/lib/base/internal/ObjectInjection.cjs +2 -2
- package/src/lib/base/internal/ObjectInjection.mjs +2 -2
- package/src/lib/base/internal/ObjectLifetime.cjs +5 -5
- package/src/lib/base/internal/ObjectLifetime.mjs +5 -5
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +17 -17
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +17 -17
- package/src/lib/base/internal/ObjectType.cjs +30 -30
- package/src/lib/base/internal/ObjectType.mjs +30 -30
- 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 +3 -3
- package/src/lib/base/internal/PatternManager.mjs +3 -3
- package/src/lib/base/internal/StringifyPattern.cjs +4 -4
- package/src/lib/base/internal/StringifyPattern.mjs +4 -4
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +17 -17
- package/src/lib/context/CLIContext.mjs +17 -17
- package/src/lib/context/HTTPContext.cjs +17 -17
- package/src/lib/context/HTTPContext.mjs +17 -17
- package/src/lib/context/ServiceContext.cjs +17 -17
- package/src/lib/context/ServiceContext.mjs +17 -17
- package/src/lib/core/Alias.cjs +4 -4
- package/src/lib/core/Alias.mjs +4 -4
- package/src/lib/core/Application.cjs +110 -110
- package/src/lib/core/Application.mjs +110 -110
- package/src/lib/core/Component.cjs +31 -31
- package/src/lib/core/Component.mjs +31 -31
- package/src/lib/core/Container.cjs +30 -30
- package/src/lib/core/Container.mjs +30 -30
- package/src/lib/core/DTO.cjs +17 -17
- package/src/lib/core/DTO.mjs +17 -17
- package/src/lib/core/Module.cjs +33 -33
- package/src/lib/core/Module.mjs +33 -33
- package/src/lib/core/Provider.cjs +30 -30
- package/src/lib/core/Provider.mjs +30 -30
- package/src/lib/core/Time.cjs +5 -5
- package/src/lib/core/Time.mjs +5 -5
- 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 +4 -4
- package/src/lib/helpers/Glob.mjs +4 -4
- 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 +3 -3
- package/src/lib/helpers/IsGlobString.mjs +3 -3
- package/src/lib/helpers/IsHtml.cjs +2 -2
- package/src/lib/helpers/IsHtml.mjs +2 -2
- 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 +17 -17
- package/src/lib/helpers/IsSymbol.mjs +17 -17
- package/src/lib/helpers/IsXML.cjs +3 -3
- package/src/lib/helpers/IsXML.mjs +3 -3
- package/src/lib/helpers/MD5.cjs +3 -3
- package/src/lib/helpers/MD5.mjs +3 -3
- 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 +3 -3
- package/src/lib/helpers/NonceStr.mjs +3 -3
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +2 -2
- package/src/lib/helpers/ObjectHash.mjs +2 -2
- 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 +3 -3
- package/src/lib/helpers/RandomString.mjs +3 -3
- package/src/lib/helpers/SHA1.cjs +3 -3
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.cjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- 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 +4 -4
- package/src/lib/helpers/SortArray.mjs +4 -4
- 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 +4 -4
- package/src/lib/helpers/URLBuilder.mjs +4 -4
- package/src/lib/helpers/UUID.cjs +2 -2
- package/src/lib/helpers/UUID.mjs +2 -2
- 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 +30 -30
- package/src/lib/ioc/DependencyInjectionContainer.mjs +30 -30
- package/src/lib/ioc/Errors.cjs +17 -17
- package/src/lib/ioc/Errors.mjs +17 -17
- 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 +29 -29
- package/src/lib/ioc/ListModules.mjs +29 -29
- package/src/lib/ioc/LoadModules.cjs +17 -17
- package/src/lib/ioc/LoadModules.mjs +17 -17
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +17 -17
- package/src/lib/ioc/Resolvers.mjs +17 -17
- package/src/lib/ioc/Utils.cjs +17 -17
- package/src/lib/ioc/Utils.mjs +17 -17
- package/src/lib/validation/VLD.cjs +6 -6
- package/src/lib/validation/VLD.mjs +6 -6
- 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 +30 -30
- package/src/options/ApplicationOptions.mjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.cjs +30 -30
- package/src/options/LoadAnonymousObjectOptions.mjs +30 -30
- package/src/options/LoadNamedObjectOptions.cjs +30 -30
- package/src/options/LoadNamedObjectOptions.mjs +30 -30
- package/src/options/LoadObjectOptions.cjs +30 -30
- package/src/options/LoadObjectOptions.mjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.cjs +30 -30
- package/src/options/ModuleLoadObjectsOptions.mjs +30 -30
- package/src/options/ModuleOptions.cjs +30 -30
- package/src/options/ModuleOptions.mjs +30 -30
- package/src/options/OverridableNamedObjectOptions.cjs +30 -30
- package/src/options/OverridableNamedObjectOptions.mjs +30 -30
- package/src/options/OverridableObjectOptions.cjs +30 -30
- package/src/options/OverridableObjectOptions.mjs +30 -30
- package/src/providers/Database.cjs +73 -73
- package/src/providers/Database.mjs +73 -73
- package/src/providers/PasswordHash.cjs +31 -31
- package/src/providers/PasswordHash.mjs +31 -31
- package/src/providers/migration/GenerateMigration.cjs +110 -110
- package/src/providers/migration/GenerateMigration.mjs +110 -110
- 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 +1 -1
- package/vendor/Package.internal.1.mjs +1 -1
- package/vendor/Package.internal.10.cjs +1 -1
- package/vendor/Package.internal.10.mjs +1 -1
- package/vendor/Package.internal.100.cjs +67 -2
- package/vendor/Package.internal.100.mjs +67 -2
- package/vendor/Package.internal.101.cjs +113 -102
- package/vendor/Package.internal.101.mjs +116 -93
- package/vendor/Package.internal.102.cjs +9 -81
- package/vendor/Package.internal.102.mjs +5 -81
- package/vendor/Package.internal.103.cjs +2 -56
- package/vendor/Package.internal.103.mjs +2 -52
- package/vendor/Package.internal.104.cjs +2 -18
- package/vendor/Package.internal.104.mjs +2 -18
- package/vendor/Package.internal.105.cjs +103 -87
- package/vendor/Package.internal.105.mjs +90 -88
- package/vendor/Package.internal.106.cjs +72 -97
- package/vendor/Package.internal.106.mjs +70 -99
- package/vendor/Package.internal.107.cjs +38 -2156
- package/vendor/Package.internal.107.mjs +37 -2159
- package/vendor/Package.internal.108.cjs +13 -2459
- package/vendor/Package.internal.108.mjs +13 -2429
- package/vendor/Package.internal.109.cjs +70 -1280
- package/vendor/Package.internal.109.mjs +73 -1269
- package/vendor/Package.internal.11.cjs +98 -100
- package/vendor/Package.internal.11.mjs +134 -134
- package/vendor/Package.internal.110.cjs +108 -28
- package/vendor/Package.internal.110.mjs +109 -27
- package/vendor/Package.internal.111.cjs +2169 -13
- package/vendor/Package.internal.111.mjs +2169 -13
- package/vendor/Package.internal.112.cjs +2456 -11
- package/vendor/Package.internal.112.mjs +2425 -12
- package/vendor/Package.internal.113.cjs +1289 -35
- package/vendor/Package.internal.113.mjs +1277 -37
- package/vendor/Package.internal.114.cjs +23 -131
- package/vendor/Package.internal.114.mjs +26 -136
- package/vendor/Package.internal.115.cjs +19 -1
- package/vendor/Package.internal.115.mjs +18 -1
- package/vendor/Package.internal.116.cjs +18 -3
- package/vendor/Package.internal.116.mjs +20 -3
- package/vendor/Package.internal.117.cjs +50 -2
- package/vendor/Package.internal.117.mjs +52 -2
- package/vendor/Package.internal.118.cjs +139 -2
- package/vendor/Package.internal.118.mjs +141 -2
- package/vendor/Package.internal.119.cjs +1 -3
- package/vendor/Package.internal.119.mjs +1 -2
- package/vendor/Package.internal.12.cjs +12469 -270
- package/vendor/Package.internal.12.mjs +12452 -271
- package/vendor/Package.internal.120.cjs +3 -46
- package/vendor/Package.internal.120.mjs +3 -46
- package/vendor/Package.internal.121.cjs +2 -12
- package/vendor/Package.internal.121.mjs +2 -14
- package/vendor/Package.internal.122.cjs +2 -10
- package/vendor/Package.internal.122.mjs +2 -12
- package/vendor/Package.internal.123.cjs +2 -18
- package/vendor/Package.internal.123.mjs +2 -18
- package/vendor/Package.internal.124.cjs +35 -104
- package/vendor/Package.internal.124.mjs +35 -104
- package/vendor/Package.internal.125.cjs +12 -16
- package/vendor/Package.internal.125.mjs +13 -15
- package/vendor/Package.internal.126.cjs +10 -17
- package/vendor/Package.internal.126.mjs +12 -17
- package/vendor/Package.internal.127.cjs +12 -8868
- package/vendor/Package.internal.127.mjs +12 -8868
- package/vendor/Package.internal.128.cjs +88 -869
- package/vendor/Package.internal.128.mjs +98 -879
- package/vendor/Package.internal.129.cjs +10 -6761
- package/vendor/Package.internal.129.mjs +10 -6769
- package/vendor/Package.internal.13.cjs +267 -701
- package/vendor/Package.internal.13.mjs +269 -703
- package/vendor/Package.internal.130.cjs +12 -466
- package/vendor/Package.internal.130.mjs +12 -454
- package/vendor/Package.internal.131.cjs +8819 -560
- package/vendor/Package.internal.131.mjs +8821 -558
- package/vendor/Package.internal.132.cjs +878 -76
- package/vendor/Package.internal.132.mjs +881 -73
- package/vendor/Package.internal.133.cjs +6767 -2
- package/vendor/Package.internal.133.mjs +6775 -2
- package/vendor/Package.internal.134.cjs +446 -3726
- package/vendor/Package.internal.134.mjs +440 -3732
- package/vendor/Package.internal.135.cjs +577 -521
- package/vendor/Package.internal.135.mjs +573 -521
- package/vendor/Package.internal.136.cjs +95 -2
- package/vendor/Package.internal.136.mjs +89 -2
- package/vendor/Package.internal.137.cjs +2 -2
- package/vendor/Package.internal.137.mjs +2 -2
- package/vendor/Package.internal.138.cjs +3751 -2
- package/vendor/Package.internal.138.mjs +3751 -2
- package/vendor/Package.internal.139.cjs +559 -2
- package/vendor/Package.internal.139.mjs +559 -2
- package/vendor/Package.internal.14.cjs +710 -905
- package/vendor/Package.internal.14.mjs +711 -894
- package/vendor/Package.internal.140.cjs +2 -2
- package/vendor/Package.internal.140.mjs +2 -2
- package/vendor/Package.internal.141.cjs +2 -2
- package/vendor/Package.internal.141.mjs +2 -2
- package/vendor/Package.internal.142.cjs +2 -2
- package/vendor/Package.internal.142.mjs +2 -2
- package/vendor/Package.internal.143.cjs +2 -2
- package/vendor/Package.internal.143.mjs +2 -2
- package/vendor/Package.internal.144.cjs +2 -2
- package/vendor/Package.internal.144.mjs +2 -2
- package/vendor/Package.internal.145.cjs +2 -2
- package/vendor/Package.internal.145.mjs +2 -2
- package/vendor/Package.internal.146.cjs +2 -2
- package/vendor/Package.internal.146.mjs +2 -2
- package/vendor/Package.internal.147.cjs +2 -406
- package/vendor/Package.internal.147.mjs +2 -400
- package/vendor/Package.internal.148.cjs +2 -102
- package/vendor/Package.internal.148.mjs +2 -104
- package/vendor/Package.internal.149.cjs +2 -25
- package/vendor/Package.internal.149.mjs +2 -27
- package/vendor/Package.internal.15.cjs +70 -40
- package/vendor/Package.internal.15.mjs +72 -44
- package/vendor/Package.internal.150.cjs +2 -2
- package/vendor/Package.internal.150.mjs +2 -2
- package/vendor/Package.internal.151.cjs +406 -2
- package/vendor/Package.internal.151.mjs +400 -2
- package/vendor/Package.internal.152.cjs +78 -697
- package/vendor/Package.internal.152.mjs +79 -698
- package/vendor/Package.internal.153.cjs +19 -1540
- package/vendor/Package.internal.153.mjs +21 -1534
- package/vendor/Package.internal.154.cjs +2 -362
- package/vendor/Package.internal.154.mjs +2 -364
- package/vendor/Package.internal.155.cjs +2 -105
- package/vendor/Package.internal.155.mjs +2 -107
- package/vendor/Package.internal.156.cjs +680 -593
- package/vendor/Package.internal.156.mjs +683 -582
- package/vendor/Package.internal.157.cjs +1444 -439
- package/vendor/Package.internal.157.mjs +1439 -432
- package/vendor/Package.internal.158.cjs +325 -566
- package/vendor/Package.internal.158.mjs +326 -567
- package/vendor/Package.internal.159.cjs +94 -126
- package/vendor/Package.internal.159.mjs +95 -119
- package/vendor/Package.internal.16.cjs +950 -232
- package/vendor/Package.internal.16.mjs +942 -236
- package/vendor/Package.internal.160.cjs +602 -85
- package/vendor/Package.internal.160.mjs +594 -83
- package/vendor/Package.internal.161.cjs +459 -1140
- package/vendor/Package.internal.161.mjs +460 -1141
- package/vendor/Package.internal.162.cjs +588 -73
- package/vendor/Package.internal.162.mjs +588 -81
- package/vendor/Package.internal.163.cjs +137 -2
- package/vendor/Package.internal.163.mjs +131 -2
- package/vendor/Package.internal.164.cjs +117 -2
- package/vendor/Package.internal.164.mjs +111 -2
- package/vendor/Package.internal.165.cjs +1204 -35
- package/vendor/Package.internal.165.mjs +1195 -36
- package/vendor/Package.internal.166.cjs +86 -6
- package/vendor/Package.internal.166.mjs +95 -7
- package/vendor/Package.internal.167.cjs +2 -10
- package/vendor/Package.internal.167.mjs +2 -6
- package/vendor/Package.internal.168.cjs +2 -163
- package/vendor/Package.internal.168.mjs +2 -163
- package/vendor/Package.internal.169.cjs +46 -14
- package/vendor/Package.internal.169.mjs +49 -9
- package/vendor/Package.internal.17.cjs +41 -429
- package/vendor/Package.internal.17.mjs +42 -430
- package/vendor/Package.internal.170.cjs +6 -247
- package/vendor/Package.internal.170.mjs +7 -246
- package/vendor/Package.internal.171.cjs +7 -944
- package/vendor/Package.internal.171.mjs +4 -945
- package/vendor/Package.internal.172.cjs +157 -19
- package/vendor/Package.internal.172.mjs +160 -24
- package/vendor/Package.internal.173.cjs +10 -67
- package/vendor/Package.internal.173.mjs +10 -67
- package/vendor/Package.internal.174.cjs +229 -633
- package/vendor/Package.internal.174.mjs +227 -631
- package/vendor/Package.internal.175.cjs +927 -55
- package/vendor/Package.internal.175.mjs +926 -54
- package/vendor/Package.internal.176.cjs +19 -1133
- package/vendor/Package.internal.176.mjs +25 -1031
- package/vendor/Package.internal.177.cjs +69 -59
- package/vendor/Package.internal.177.mjs +63 -59
- package/vendor/Package.internal.178.cjs +624 -81
- package/vendor/Package.internal.178.mjs +624 -81
- package/vendor/Package.internal.179.cjs +60 -85
- package/vendor/Package.internal.179.mjs +60 -85
- package/vendor/Package.internal.18.cjs +233 -528
- package/vendor/Package.internal.18.mjs +234 -523
- package/vendor/Package.internal.180.cjs +940 -45249
- package/vendor/Package.internal.180.mjs +869 -45268
- package/vendor/Package.internal.181.cjs +66 -4
- package/vendor/Package.internal.181.mjs +66 -4
- package/vendor/Package.internal.182.cjs +103 -21
- package/vendor/Package.internal.182.mjs +103 -21
- package/vendor/Package.internal.183.cjs +84 -299
- package/vendor/Package.internal.183.mjs +84 -299
- package/vendor/Package.internal.184.cjs +45316 -809
- package/vendor/Package.internal.184.mjs +45270 -789
- package/vendor/Package.internal.185.cjs +4 -1086
- package/vendor/Package.internal.185.mjs +4 -1088
- package/vendor/Package.internal.186.cjs +21 -156
- package/vendor/Package.internal.186.mjs +20 -157
- package/vendor/Package.internal.187.cjs +310 -8
- package/vendor/Package.internal.187.mjs +310 -8
- package/vendor/Package.internal.188.cjs +936 -7
- package/vendor/Package.internal.188.mjs +947 -8
- package/vendor/Package.internal.189.cjs +1072 -31
- package/vendor/Package.internal.189.mjs +1074 -31
- package/vendor/Package.internal.19.cjs +427 -217
- package/vendor/Package.internal.19.mjs +433 -223
- package/vendor/Package.internal.190.cjs +134 -462
- package/vendor/Package.internal.190.mjs +135 -441
- package/vendor/Package.internal.191.cjs +13 -2
- package/vendor/Package.internal.191.mjs +13 -2
- package/vendor/Package.internal.192.cjs +12 -2
- package/vendor/Package.internal.192.mjs +12 -2
- package/vendor/Package.internal.193.cjs +47 -2
- package/vendor/Package.internal.193.mjs +47 -2
- package/vendor/Package.internal.194.cjs +491 -2
- package/vendor/Package.internal.194.mjs +471 -2
- package/vendor/Package.internal.195.cjs +2 -2
- package/vendor/Package.internal.195.mjs +2 -2
- package/vendor/Package.internal.196.cjs +2 -2
- package/vendor/Package.internal.196.mjs +2 -2
- package/vendor/Package.internal.197.cjs +2 -2
- package/vendor/Package.internal.197.mjs +2 -2
- package/vendor/Package.internal.198.cjs +2 -2
- package/vendor/Package.internal.198.mjs +2 -2
- package/vendor/Package.internal.199.cjs +4 -0
- package/vendor/Package.internal.199.mjs +2 -0
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +525 -957
- package/vendor/Package.internal.20.mjs +521 -959
- package/vendor/Package.internal.200.cjs +4 -0
- package/vendor/Package.internal.200.mjs +2 -0
- package/vendor/Package.internal.201.cjs +4 -0
- package/vendor/Package.internal.201.mjs +2 -0
- package/vendor/Package.internal.202.cjs +4 -0
- package/vendor/Package.internal.202.mjs +2 -0
- package/vendor/Package.internal.21.cjs +406 -8
- package/vendor/Package.internal.21.mjs +408 -8
- package/vendor/Package.internal.22.cjs +913 -123
- package/vendor/Package.internal.22.mjs +909 -123
- package/vendor/Package.internal.23.cjs +214 -136
- package/vendor/Package.internal.23.mjs +215 -135
- package/vendor/Package.internal.24.cjs +996 -5
- package/vendor/Package.internal.24.mjs +998 -5
- package/vendor/Package.internal.25.cjs +8 -20
- package/vendor/Package.internal.25.mjs +7 -19
- package/vendor/Package.internal.26.cjs +120 -473
- package/vendor/Package.internal.26.mjs +120 -469
- package/vendor/Package.internal.27.cjs +127 -60
- package/vendor/Package.internal.27.mjs +128 -57
- package/vendor/Package.internal.28.cjs +6 -2
- package/vendor/Package.internal.28.mjs +6 -2
- package/vendor/Package.internal.29.cjs +16 -35
- package/vendor/Package.internal.29.mjs +16 -35
- package/vendor/Package.internal.3.cjs +1 -1
- package/vendor/Package.internal.3.mjs +1 -1
- package/vendor/Package.internal.30.cjs +473 -21
- package/vendor/Package.internal.30.mjs +472 -24
- package/vendor/Package.internal.31.cjs +77 -9
- package/vendor/Package.internal.31.mjs +73 -9
- package/vendor/Package.internal.32.cjs +2 -189
- package/vendor/Package.internal.32.mjs +2 -191
- package/vendor/Package.internal.33.cjs +31 -53
- package/vendor/Package.internal.33.mjs +32 -54
- package/vendor/Package.internal.34.cjs +20 -160
- package/vendor/Package.internal.34.mjs +24 -166
- package/vendor/Package.internal.35.cjs +10 -2072
- package/vendor/Package.internal.35.mjs +10 -2068
- package/vendor/Package.internal.36.cjs +186 -517
- package/vendor/Package.internal.36.mjs +189 -512
- package/vendor/Package.internal.37.cjs +57 -413
- package/vendor/Package.internal.37.mjs +57 -409
- package/vendor/Package.internal.38.cjs +132 -2329
- package/vendor/Package.internal.38.mjs +133 -2318
- package/vendor/Package.internal.39.cjs +2063 -50
- package/vendor/Package.internal.39.mjs +2058 -57
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +507 -137
- package/vendor/Package.internal.40.mjs +504 -140
- package/vendor/Package.internal.41.cjs +355 -573
- package/vendor/Package.internal.41.mjs +353 -577
- package/vendor/Package.internal.42.cjs +2315 -196
- package/vendor/Package.internal.42.mjs +2307 -200
- package/vendor/Package.internal.43.cjs +57 -222
- package/vendor/Package.internal.43.mjs +64 -217
- package/vendor/Package.internal.44.cjs +150 -2
- package/vendor/Package.internal.44.mjs +150 -2
- package/vendor/Package.internal.45.cjs +591 -317
- package/vendor/Package.internal.45.mjs +596 -316
- package/vendor/Package.internal.46.cjs +236 -31
- package/vendor/Package.internal.46.mjs +238 -31
- package/vendor/Package.internal.47.cjs +217 -46
- package/vendor/Package.internal.47.mjs +213 -46
- package/vendor/Package.internal.48.cjs +2 -23
- package/vendor/Package.internal.48.mjs +2 -23
- package/vendor/Package.internal.49.cjs +354 -87
- package/vendor/Package.internal.49.mjs +351 -82
- package/vendor/Package.internal.5.cjs +1 -1
- package/vendor/Package.internal.5.mjs +1 -1
- package/vendor/Package.internal.50.cjs +33 -79
- package/vendor/Package.internal.50.mjs +33 -79
- package/vendor/Package.internal.51.cjs +46 -81
- package/vendor/Package.internal.51.mjs +45 -68
- package/vendor/Package.internal.52.cjs +18 -21
- package/vendor/Package.internal.52.mjs +18 -21
- package/vendor/Package.internal.53.cjs +78 -335
- package/vendor/Package.internal.53.mjs +73 -336
- package/vendor/Package.internal.54.cjs +86 -2
- package/vendor/Package.internal.54.mjs +86 -2
- package/vendor/Package.internal.55.cjs +64 -172
- package/vendor/Package.internal.55.mjs +58 -174
- package/vendor/Package.internal.56.cjs +23 -22
- package/vendor/Package.internal.56.mjs +23 -24
- package/vendor/Package.internal.57.cjs +353 -2
- package/vendor/Package.internal.57.mjs +353 -2
- package/vendor/Package.internal.58.cjs +2 -198
- package/vendor/Package.internal.58.mjs +2 -200
- package/vendor/Package.internal.59.cjs +127 -3945
- package/vendor/Package.internal.59.mjs +126 -3958
- package/vendor/Package.internal.6.cjs +2 -2
- package/vendor/Package.internal.6.mjs +2 -2
- package/vendor/Package.internal.60.cjs +25 -2
- package/vendor/Package.internal.60.mjs +27 -2
- package/vendor/Package.internal.61.cjs +2 -319
- package/vendor/Package.internal.61.mjs +2 -321
- package/vendor/Package.internal.62.cjs +175 -340
- package/vendor/Package.internal.62.mjs +177 -340
- package/vendor/Package.internal.63.cjs +3959 -343
- package/vendor/Package.internal.63.mjs +3967 -335
- package/vendor/Package.internal.64.cjs +2 -125
- package/vendor/Package.internal.64.mjs +2 -125
- package/vendor/Package.internal.65.cjs +314 -24
- package/vendor/Package.internal.65.mjs +316 -24
- package/vendor/Package.internal.66.cjs +347 -69
- package/vendor/Package.internal.66.mjs +350 -72
- package/vendor/Package.internal.67.cjs +386 -44
- package/vendor/Package.internal.67.mjs +386 -50
- package/vendor/Package.internal.68.cjs +115 -22
- package/vendor/Package.internal.68.mjs +114 -21
- package/vendor/Package.internal.69.cjs +29 -2
- package/vendor/Package.internal.69.mjs +29 -2
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.70.cjs +67 -664
- package/vendor/Package.internal.70.mjs +67 -644
- package/vendor/Package.internal.71.cjs +41 -13876
- package/vendor/Package.internal.71.mjs +41 -13852
- package/vendor/Package.internal.72.cjs +26 -29
- package/vendor/Package.internal.72.mjs +27 -26
- package/vendor/Package.internal.73.cjs +2 -4075
- package/vendor/Package.internal.73.mjs +2 -4077
- package/vendor/Package.internal.74.cjs +654 -1634
- package/vendor/Package.internal.74.mjs +633 -1635
- package/vendor/Package.internal.75.cjs +13834 -197
- package/vendor/Package.internal.75.mjs +13810 -197
- package/vendor/Package.internal.76.cjs +25 -4952
- package/vendor/Package.internal.76.mjs +23 -4940
- package/vendor/Package.internal.77.cjs +3975 -1137
- package/vendor/Package.internal.77.mjs +3979 -1127
- package/vendor/Package.internal.78.cjs +1635 -311
- package/vendor/Package.internal.78.mjs +1637 -299
- package/vendor/Package.internal.79.cjs +248 -23
- package/vendor/Package.internal.79.mjs +251 -26
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.80.cjs +4941 -65
- package/vendor/Package.internal.80.mjs +4926 -66
- package/vendor/Package.internal.81.cjs +1221 -37
- package/vendor/Package.internal.81.mjs +1208 -38
- package/vendor/Package.internal.82.cjs +334 -9
- package/vendor/Package.internal.82.mjs +322 -9
- package/vendor/Package.internal.83.cjs +32 -1353
- package/vendor/Package.internal.83.mjs +32 -1355
- package/vendor/Package.internal.84.cjs +82 -6
- package/vendor/Package.internal.84.mjs +86 -4
- package/vendor/Package.internal.85.cjs +53 -2
- package/vendor/Package.internal.85.mjs +55 -2
- package/vendor/Package.internal.86.cjs +8 -344
- package/vendor/Package.internal.86.mjs +8 -346
- package/vendor/Package.internal.87.cjs +1351 -76
- package/vendor/Package.internal.87.mjs +1352 -77
- package/vendor/Package.internal.88.cjs +6 -1439
- package/vendor/Package.internal.88.mjs +4 -1431
- package/vendor/Package.internal.89.cjs +2 -142
- package/vendor/Package.internal.89.mjs +2 -142
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
- package/vendor/Package.internal.90.cjs +274 -1745
- package/vendor/Package.internal.90.mjs +275 -1738
- package/vendor/Package.internal.91.cjs +67 -117
- package/vendor/Package.internal.91.mjs +69 -113
- package/vendor/Package.internal.92.cjs +1388 -151
- package/vendor/Package.internal.92.mjs +1377 -152
- package/vendor/Package.internal.93.cjs +94 -1591
- package/vendor/Package.internal.93.mjs +94 -1593
- package/vendor/Package.internal.94.cjs +1802 -54
- package/vendor/Package.internal.94.mjs +1799 -59
- package/vendor/Package.internal.95.cjs +126 -24
- package/vendor/Package.internal.95.mjs +121 -25
- package/vendor/Package.internal.96.cjs +189 -50
- package/vendor/Package.internal.96.mjs +194 -53
- package/vendor/Package.internal.97.cjs +1611 -93
- package/vendor/Package.internal.97.mjs +1615 -95
- package/vendor/Package.internal.98.cjs +66 -8
- package/vendor/Package.internal.98.mjs +71 -5
- package/vendor/Package.internal.99.cjs +26 -2
- package/vendor/Package.internal.99.mjs +28 -2
|
@@ -1,1822 +1,351 @@
|
|
|
1
|
-
/* Build Date: Mon Nov 24 2025
|
|
1
|
+
/* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
exports.cjs = {};
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Object.defineProperty(exports.cjs, "__esModule", {
|
|
7
|
+
value: true
|
|
8
|
+
});
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
var r = Function.prototype.toString;
|
|
9
11
|
|
|
10
|
-
|
|
11
|
-
default: t
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
const o = u(t);
|
|
15
|
-
|
|
16
|
-
const s = u(n);
|
|
17
|
-
|
|
18
|
-
var r = {};
|
|
19
|
-
|
|
20
|
-
const a = s.default;
|
|
21
|
-
|
|
22
|
-
const i = "\\\\/";
|
|
23
|
-
|
|
24
|
-
const c = `[^${i}]`;
|
|
25
|
-
|
|
26
|
-
const l = "\\.";
|
|
27
|
-
|
|
28
|
-
const p = "\\+";
|
|
29
|
-
|
|
30
|
-
const f = "\\?";
|
|
31
|
-
|
|
32
|
-
const A = "\\/";
|
|
33
|
-
|
|
34
|
-
const R = "(?=.)";
|
|
35
|
-
|
|
36
|
-
const h = "[^/]";
|
|
37
|
-
|
|
38
|
-
const _ = `(?:${A}|$)`;
|
|
39
|
-
|
|
40
|
-
const E = `(?:^|${A})`;
|
|
41
|
-
|
|
42
|
-
const g = `${l}{1,2}${_}`;
|
|
12
|
+
var t = Object.create;
|
|
43
13
|
|
|
44
|
-
|
|
14
|
+
var e = Object.prototype.toString;
|
|
45
15
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
const $ = `(?!${g})`;
|
|
51
|
-
|
|
52
|
-
const C = `[^.${A}]`;
|
|
53
|
-
|
|
54
|
-
const x = `${h}*?`;
|
|
55
|
-
|
|
56
|
-
const d = {
|
|
57
|
-
DOT_LITERAL: l,
|
|
58
|
-
PLUS_LITERAL: p,
|
|
59
|
-
QMARK_LITERAL: f,
|
|
60
|
-
SLASH_LITERAL: A,
|
|
61
|
-
ONE_CHAR: R,
|
|
62
|
-
QMARK: h,
|
|
63
|
-
END_ANCHOR: _,
|
|
64
|
-
DOTS_SLASH: g,
|
|
65
|
-
NO_DOT: b,
|
|
66
|
-
NO_DOTS: y,
|
|
67
|
-
NO_DOT_SLASH: S,
|
|
68
|
-
NO_DOTS_SLASH: $,
|
|
69
|
-
QMARK_NO_DOT: C,
|
|
70
|
-
STAR: x,
|
|
71
|
-
START_ANCHOR: E
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
const H = {
|
|
75
|
-
...d,
|
|
76
|
-
SLASH_LITERAL: `[${i}]`,
|
|
77
|
-
QMARK: c,
|
|
78
|
-
STAR: `${c}*?`,
|
|
79
|
-
DOTS_SLASH: `${l}{1,2}(?:[${i}]|$)`,
|
|
80
|
-
NO_DOT: `(?!${l})`,
|
|
81
|
-
NO_DOTS: `(?!(?:^|[${i}])${l}{1,2}(?:[${i}]|$))`,
|
|
82
|
-
NO_DOT_SLASH: `(?!${l}{0,1}(?:[${i}]|$))`,
|
|
83
|
-
NO_DOTS_SLASH: `(?!${l}{1,2}(?:[${i}]|$))`,
|
|
84
|
-
QMARK_NO_DOT: `[^.${i}]`,
|
|
85
|
-
START_ANCHOR: `(?:^|[${i}])`,
|
|
86
|
-
END_ANCHOR: `(?:[${i}]|$)`
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
const v = {
|
|
90
|
-
alnum: "a-zA-Z0-9",
|
|
91
|
-
alpha: "a-zA-Z",
|
|
92
|
-
ascii: "\\x00-\\x7F",
|
|
93
|
-
blank: " \\t",
|
|
94
|
-
cntrl: "\\x00-\\x1F\\x7F",
|
|
95
|
-
digit: "0-9",
|
|
96
|
-
graph: "\\x21-\\x7E",
|
|
97
|
-
lower: "a-z",
|
|
98
|
-
print: "\\x20-\\x7E ",
|
|
99
|
-
punct: "\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",
|
|
100
|
-
space: " \\t\\r\\n\\v\\f",
|
|
101
|
-
upper: "A-Z",
|
|
102
|
-
word: "A-Za-z0-9_",
|
|
103
|
-
xdigit: "A-Fa-f0-9"
|
|
104
|
-
};
|
|
105
|
-
|
|
106
|
-
var T = {
|
|
107
|
-
MAX_LENGTH: 1024 * 64,
|
|
108
|
-
POSIX_REGEX_SOURCE: v,
|
|
109
|
-
REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g,
|
|
110
|
-
REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/,
|
|
111
|
-
REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/,
|
|
112
|
-
REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g,
|
|
113
|
-
REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g,
|
|
114
|
-
REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g,
|
|
115
|
-
REPLACEMENTS: {
|
|
116
|
-
"***": "*",
|
|
117
|
-
"**/**": "**",
|
|
118
|
-
"**/**/**": "**"
|
|
119
|
-
},
|
|
120
|
-
CHAR_0: 48,
|
|
121
|
-
CHAR_9: 57,
|
|
122
|
-
CHAR_UPPERCASE_A: 65,
|
|
123
|
-
CHAR_LOWERCASE_A: 97,
|
|
124
|
-
CHAR_UPPERCASE_Z: 90,
|
|
125
|
-
CHAR_LOWERCASE_Z: 122,
|
|
126
|
-
CHAR_LEFT_PARENTHESES: 40,
|
|
127
|
-
CHAR_RIGHT_PARENTHESES: 41,
|
|
128
|
-
CHAR_ASTERISK: 42,
|
|
129
|
-
CHAR_AMPERSAND: 38,
|
|
130
|
-
CHAR_AT: 64,
|
|
131
|
-
CHAR_BACKWARD_SLASH: 92,
|
|
132
|
-
CHAR_CARRIAGE_RETURN: 13,
|
|
133
|
-
CHAR_CIRCUMFLEX_ACCENT: 94,
|
|
134
|
-
CHAR_COLON: 58,
|
|
135
|
-
CHAR_COMMA: 44,
|
|
136
|
-
CHAR_DOT: 46,
|
|
137
|
-
CHAR_DOUBLE_QUOTE: 34,
|
|
138
|
-
CHAR_EQUAL: 61,
|
|
139
|
-
CHAR_EXCLAMATION_MARK: 33,
|
|
140
|
-
CHAR_FORM_FEED: 12,
|
|
141
|
-
CHAR_FORWARD_SLASH: 47,
|
|
142
|
-
CHAR_GRAVE_ACCENT: 96,
|
|
143
|
-
CHAR_HASH: 35,
|
|
144
|
-
CHAR_HYPHEN_MINUS: 45,
|
|
145
|
-
CHAR_LEFT_ANGLE_BRACKET: 60,
|
|
146
|
-
CHAR_LEFT_CURLY_BRACE: 123,
|
|
147
|
-
CHAR_LEFT_SQUARE_BRACKET: 91,
|
|
148
|
-
CHAR_LINE_FEED: 10,
|
|
149
|
-
CHAR_NO_BREAK_SPACE: 160,
|
|
150
|
-
CHAR_PERCENT: 37,
|
|
151
|
-
CHAR_PLUS: 43,
|
|
152
|
-
CHAR_QUESTION_MARK: 63,
|
|
153
|
-
CHAR_RIGHT_ANGLE_BRACKET: 62,
|
|
154
|
-
CHAR_RIGHT_CURLY_BRACE: 125,
|
|
155
|
-
CHAR_RIGHT_SQUARE_BRACKET: 93,
|
|
156
|
-
CHAR_SEMICOLON: 59,
|
|
157
|
-
CHAR_SINGLE_QUOTE: 39,
|
|
158
|
-
CHAR_SPACE: 32,
|
|
159
|
-
CHAR_TAB: 9,
|
|
160
|
-
CHAR_UNDERSCORE: 95,
|
|
161
|
-
CHAR_VERTICAL_LINE: 124,
|
|
162
|
-
CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279,
|
|
163
|
-
SEP: a.sep,
|
|
164
|
-
extglobChars(t) {
|
|
165
|
-
return {
|
|
166
|
-
"!": {
|
|
167
|
-
type: "negate",
|
|
168
|
-
open: "(?:(?!(?:",
|
|
169
|
-
close: `))${t.STAR})`
|
|
170
|
-
},
|
|
171
|
-
"?": {
|
|
172
|
-
type: "qmark",
|
|
173
|
-
open: "(?:",
|
|
174
|
-
close: ")?"
|
|
175
|
-
},
|
|
176
|
-
"+": {
|
|
177
|
-
type: "plus",
|
|
178
|
-
open: "(?:",
|
|
179
|
-
close: ")+"
|
|
180
|
-
},
|
|
181
|
-
"*": {
|
|
182
|
-
type: "star",
|
|
183
|
-
open: "(?:",
|
|
184
|
-
close: ")*"
|
|
185
|
-
},
|
|
186
|
-
"@": {
|
|
187
|
-
type: "at",
|
|
188
|
-
open: "(?:",
|
|
189
|
-
close: ")"
|
|
190
|
-
}
|
|
191
|
-
};
|
|
192
|
-
},
|
|
193
|
-
globChars(t) {
|
|
194
|
-
return t === true ? H : d;
|
|
16
|
+
var n = function() {
|
|
17
|
+
function r() {
|
|
18
|
+
this._keys = [];
|
|
19
|
+
this._values = [];
|
|
195
20
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
(function(t) {
|
|
199
|
-
const e = s.default;
|
|
200
|
-
const n = process.platform === "win32";
|
|
201
|
-
const {REGEX_BACKSLASH: u, REGEX_REMOVE_BACKSLASH: o, REGEX_SPECIAL_CHARS: r, REGEX_SPECIAL_CHARS_GLOBAL: a} = T;
|
|
202
|
-
t.isObject = t => t !== null && typeof t === "object" && !Array.isArray(t);
|
|
203
|
-
t.hasRegexChars = t => r.test(t);
|
|
204
|
-
t.isRegexChar = e => e.length === 1 && t.hasRegexChars(e);
|
|
205
|
-
t.escapeRegex = t => t.replace(a, "\\$1");
|
|
206
|
-
t.toPosixSlashes = t => t.replace(u, "/");
|
|
207
|
-
t.removeBackslashes = t => t.replace(o, t => t === "\\" ? "" : t);
|
|
208
|
-
t.supportsLookbehinds = () => {
|
|
209
|
-
const t = process.version.slice(1).split(".").map(Number);
|
|
210
|
-
if (t.length === 3 && t[0] >= 9 || t[0] === 8 && t[1] >= 10) {
|
|
211
|
-
return true;
|
|
212
|
-
}
|
|
213
|
-
return false;
|
|
214
|
-
};
|
|
215
|
-
t.isWindows = t => {
|
|
216
|
-
if (t && typeof t.windows === "boolean") {
|
|
217
|
-
return t.windows;
|
|
218
|
-
}
|
|
219
|
-
return n === true || e.sep === "\\";
|
|
220
|
-
};
|
|
221
|
-
t.escapeLast = (e, n, u) => {
|
|
222
|
-
const o = e.lastIndexOf(n, u);
|
|
223
|
-
if (o === -1) return e;
|
|
224
|
-
if (e[o - 1] === "\\") return t.escapeLast(e, n, o - 1);
|
|
225
|
-
return `${e.slice(0, o)}\\${e.slice(o)}`;
|
|
21
|
+
r.prototype.has = function(r) {
|
|
22
|
+
return !!~this._keys.indexOf(r);
|
|
226
23
|
};
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
if (n.startsWith("./")) {
|
|
230
|
-
n = n.slice(2);
|
|
231
|
-
e.prefix = "./";
|
|
232
|
-
}
|
|
233
|
-
return n;
|
|
24
|
+
r.prototype.get = function(r) {
|
|
25
|
+
return this._values[this._keys.indexOf(r)];
|
|
234
26
|
};
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
let s = `${u}(?:${t})${o}`;
|
|
239
|
-
if (e.negated === true) {
|
|
240
|
-
s = `(?:^(?!${s}).*$)`;
|
|
241
|
-
}
|
|
242
|
-
return s;
|
|
27
|
+
r.prototype.set = function(r, t) {
|
|
28
|
+
this._keys.push(r);
|
|
29
|
+
this._values.push(t);
|
|
243
30
|
};
|
|
244
|
-
|
|
31
|
+
return r;
|
|
32
|
+
}();
|
|
245
33
|
|
|
246
|
-
|
|
34
|
+
function o() {
|
|
35
|
+
return new n;
|
|
36
|
+
}
|
|
247
37
|
|
|
248
|
-
|
|
38
|
+
function a() {
|
|
39
|
+
return new WeakMap;
|
|
40
|
+
}
|
|
249
41
|
|
|
250
|
-
|
|
42
|
+
var c = typeof WeakMap !== "undefined" ? a : o;
|
|
251
43
|
|
|
252
|
-
|
|
253
|
-
if (
|
|
254
|
-
|
|
44
|
+
function u(e) {
|
|
45
|
+
if (!e) {
|
|
46
|
+
return t(null);
|
|
255
47
|
}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
const n = e || {};
|
|
260
|
-
const u = t.length - 1;
|
|
261
|
-
const o = n.parts === true || n.scanToEnd === true;
|
|
262
|
-
const s = [];
|
|
263
|
-
const r = [];
|
|
264
|
-
const a = [];
|
|
265
|
-
let i = t;
|
|
266
|
-
let c = -1;
|
|
267
|
-
let l = 0;
|
|
268
|
-
let p = 0;
|
|
269
|
-
let f = false;
|
|
270
|
-
let A = false;
|
|
271
|
-
let R = false;
|
|
272
|
-
let h = false;
|
|
273
|
-
let _ = false;
|
|
274
|
-
let E = false;
|
|
275
|
-
let g = false;
|
|
276
|
-
let b = false;
|
|
277
|
-
let y = false;
|
|
278
|
-
let S = false;
|
|
279
|
-
let $ = 0;
|
|
280
|
-
let C;
|
|
281
|
-
let x;
|
|
282
|
-
let d = {
|
|
283
|
-
value: "",
|
|
284
|
-
depth: 0,
|
|
285
|
-
isGlob: false
|
|
286
|
-
};
|
|
287
|
-
const H = () => c >= u;
|
|
288
|
-
const v = () => i.charCodeAt(c + 1);
|
|
289
|
-
const T = () => {
|
|
290
|
-
C = x;
|
|
291
|
-
return i.charCodeAt(++c);
|
|
292
|
-
};
|
|
293
|
-
while (c < u) {
|
|
294
|
-
x = T();
|
|
295
|
-
let t;
|
|
296
|
-
if (x === m) {
|
|
297
|
-
g = d.backslashes = true;
|
|
298
|
-
x = T();
|
|
299
|
-
if (x === B) {
|
|
300
|
-
E = true;
|
|
301
|
-
}
|
|
302
|
-
continue;
|
|
303
|
-
}
|
|
304
|
-
if (E === true || x === B) {
|
|
305
|
-
$++;
|
|
306
|
-
while (H() !== true && (x = T())) {
|
|
307
|
-
if (x === m) {
|
|
308
|
-
g = d.backslashes = true;
|
|
309
|
-
T();
|
|
310
|
-
continue;
|
|
311
|
-
}
|
|
312
|
-
if (x === B) {
|
|
313
|
-
$++;
|
|
314
|
-
continue;
|
|
315
|
-
}
|
|
316
|
-
if (E !== true && x === N && (x = T()) === N) {
|
|
317
|
-
f = d.isBrace = true;
|
|
318
|
-
R = d.isGlob = true;
|
|
319
|
-
S = true;
|
|
320
|
-
if (o === true) {
|
|
321
|
-
continue;
|
|
322
|
-
}
|
|
323
|
-
break;
|
|
324
|
-
}
|
|
325
|
-
if (E !== true && x === w) {
|
|
326
|
-
f = d.isBrace = true;
|
|
327
|
-
R = d.isGlob = true;
|
|
328
|
-
S = true;
|
|
329
|
-
if (o === true) {
|
|
330
|
-
continue;
|
|
331
|
-
}
|
|
332
|
-
break;
|
|
333
|
-
}
|
|
334
|
-
if (x === U) {
|
|
335
|
-
$--;
|
|
336
|
-
if ($ === 0) {
|
|
337
|
-
E = false;
|
|
338
|
-
f = d.isBrace = true;
|
|
339
|
-
S = true;
|
|
340
|
-
break;
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
if (o === true) {
|
|
345
|
-
continue;
|
|
346
|
-
}
|
|
347
|
-
break;
|
|
348
|
-
}
|
|
349
|
-
if (x === M) {
|
|
350
|
-
s.push(c);
|
|
351
|
-
r.push(d);
|
|
352
|
-
d = {
|
|
353
|
-
value: "",
|
|
354
|
-
depth: 0,
|
|
355
|
-
isGlob: false
|
|
356
|
-
};
|
|
357
|
-
if (S === true) continue;
|
|
358
|
-
if (C === N && c === l + 1) {
|
|
359
|
-
l += 2;
|
|
360
|
-
continue;
|
|
361
|
-
}
|
|
362
|
-
p = c + 1;
|
|
363
|
-
continue;
|
|
364
|
-
}
|
|
365
|
-
if (n.noext !== true) {
|
|
366
|
-
const t = x === P || x === k || x === O || x === K || x === I;
|
|
367
|
-
if (t === true && v() === G) {
|
|
368
|
-
R = d.isGlob = true;
|
|
369
|
-
h = d.isExtglob = true;
|
|
370
|
-
S = true;
|
|
371
|
-
if (x === I && c === l) {
|
|
372
|
-
y = true;
|
|
373
|
-
}
|
|
374
|
-
if (o === true) {
|
|
375
|
-
while (H() !== true && (x = T())) {
|
|
376
|
-
if (x === m) {
|
|
377
|
-
g = d.backslashes = true;
|
|
378
|
-
x = T();
|
|
379
|
-
continue;
|
|
380
|
-
}
|
|
381
|
-
if (x === X) {
|
|
382
|
-
R = d.isGlob = true;
|
|
383
|
-
S = true;
|
|
384
|
-
break;
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
continue;
|
|
388
|
-
}
|
|
389
|
-
break;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
if (x === O) {
|
|
393
|
-
if (C === O) _ = d.isGlobstar = true;
|
|
394
|
-
R = d.isGlob = true;
|
|
395
|
-
S = true;
|
|
396
|
-
if (o === true) {
|
|
397
|
-
continue;
|
|
398
|
-
}
|
|
399
|
-
break;
|
|
400
|
-
}
|
|
401
|
-
if (x === K) {
|
|
402
|
-
R = d.isGlob = true;
|
|
403
|
-
S = true;
|
|
404
|
-
if (o === true) {
|
|
405
|
-
continue;
|
|
406
|
-
}
|
|
407
|
-
break;
|
|
408
|
-
}
|
|
409
|
-
if (x === D) {
|
|
410
|
-
while (H() !== true && (t = T())) {
|
|
411
|
-
if (t === m) {
|
|
412
|
-
g = d.backslashes = true;
|
|
413
|
-
T();
|
|
414
|
-
continue;
|
|
415
|
-
}
|
|
416
|
-
if (t === F) {
|
|
417
|
-
A = d.isBracket = true;
|
|
418
|
-
R = d.isGlob = true;
|
|
419
|
-
S = true;
|
|
420
|
-
break;
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
if (o === true) {
|
|
424
|
-
continue;
|
|
425
|
-
}
|
|
426
|
-
break;
|
|
427
|
-
}
|
|
428
|
-
if (n.nonegate !== true && x === I && c === l) {
|
|
429
|
-
b = d.negated = true;
|
|
430
|
-
l++;
|
|
431
|
-
continue;
|
|
432
|
-
}
|
|
433
|
-
if (n.noparen !== true && x === G) {
|
|
434
|
-
R = d.isGlob = true;
|
|
435
|
-
if (o === true) {
|
|
436
|
-
while (H() !== true && (x = T())) {
|
|
437
|
-
if (x === G) {
|
|
438
|
-
g = d.backslashes = true;
|
|
439
|
-
x = T();
|
|
440
|
-
continue;
|
|
441
|
-
}
|
|
442
|
-
if (x === X) {
|
|
443
|
-
S = true;
|
|
444
|
-
break;
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
continue;
|
|
448
|
-
}
|
|
449
|
-
break;
|
|
450
|
-
}
|
|
451
|
-
if (R === true) {
|
|
452
|
-
S = true;
|
|
453
|
-
if (o === true) {
|
|
454
|
-
continue;
|
|
455
|
-
}
|
|
456
|
-
break;
|
|
457
|
-
}
|
|
48
|
+
var n = e.constructor;
|
|
49
|
+
if (n === Object) {
|
|
50
|
+
return e === Object.prototype ? {} : t(e);
|
|
458
51
|
}
|
|
459
|
-
if (n
|
|
460
|
-
|
|
461
|
-
|
|
52
|
+
if (n && ~r.call(n).indexOf("[native code]")) {
|
|
53
|
+
try {
|
|
54
|
+
return new n;
|
|
55
|
+
} catch (r) {}
|
|
462
56
|
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
57
|
+
return t(e);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function i(r) {
|
|
61
|
+
var t = "";
|
|
62
|
+
if (r.global) {
|
|
63
|
+
t += "g";
|
|
470
64
|
}
|
|
471
|
-
if (
|
|
472
|
-
|
|
473
|
-
Z = i.slice(p);
|
|
474
|
-
} else if (R === true) {
|
|
475
|
-
q = "";
|
|
476
|
-
Z = i;
|
|
477
|
-
} else {
|
|
478
|
-
q = i;
|
|
65
|
+
if (r.ignoreCase) {
|
|
66
|
+
t += "i";
|
|
479
67
|
}
|
|
480
|
-
if (
|
|
481
|
-
|
|
482
|
-
q = q.slice(0, -1);
|
|
483
|
-
}
|
|
68
|
+
if (r.multiline) {
|
|
69
|
+
t += "m";
|
|
484
70
|
}
|
|
485
|
-
if (
|
|
486
|
-
|
|
487
|
-
if (q && g === true) {
|
|
488
|
-
q = L.removeBackslashes(q);
|
|
489
|
-
}
|
|
71
|
+
if (r.unicode) {
|
|
72
|
+
t += "u";
|
|
490
73
|
}
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
input: t,
|
|
494
|
-
start: l,
|
|
495
|
-
base: q,
|
|
496
|
-
glob: Z,
|
|
497
|
-
isBrace: f,
|
|
498
|
-
isBracket: A,
|
|
499
|
-
isGlob: R,
|
|
500
|
-
isExtglob: h,
|
|
501
|
-
isGlobstar: _,
|
|
502
|
-
negated: b,
|
|
503
|
-
negatedExtglob: y
|
|
504
|
-
};
|
|
505
|
-
if (n.tokens === true) {
|
|
506
|
-
Y.maxDepth = 0;
|
|
507
|
-
if (!Q(x)) {
|
|
508
|
-
r.push(d);
|
|
509
|
-
}
|
|
510
|
-
Y.tokens = r;
|
|
74
|
+
if (r.sticky) {
|
|
75
|
+
t += "y";
|
|
511
76
|
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
for (let u = 0; u < s.length; u++) {
|
|
515
|
-
const o = e ? e + 1 : l;
|
|
516
|
-
const i = s[u];
|
|
517
|
-
const c = t.slice(o, i);
|
|
518
|
-
if (n.tokens) {
|
|
519
|
-
if (u === 0 && l !== 0) {
|
|
520
|
-
r[u].isPrefix = true;
|
|
521
|
-
r[u].value = j;
|
|
522
|
-
} else {
|
|
523
|
-
r[u].value = c;
|
|
524
|
-
}
|
|
525
|
-
W(r[u]);
|
|
526
|
-
Y.maxDepth += r[u].depth;
|
|
527
|
-
}
|
|
528
|
-
if (u !== 0 || c !== "") {
|
|
529
|
-
a.push(c);
|
|
530
|
-
}
|
|
531
|
-
e = i;
|
|
532
|
-
}
|
|
533
|
-
if (e && e + 1 < t.length) {
|
|
534
|
-
const u = t.slice(e + 1);
|
|
535
|
-
a.push(u);
|
|
536
|
-
if (n.tokens) {
|
|
537
|
-
r[r.length - 1].value = u;
|
|
538
|
-
W(r[r.length - 1]);
|
|
539
|
-
Y.maxDepth += r[r.length - 1].depth;
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
Y.slashes = s;
|
|
543
|
-
Y.parts = a;
|
|
544
|
-
}
|
|
545
|
-
return Y;
|
|
546
|
-
};
|
|
77
|
+
return t;
|
|
78
|
+
}
|
|
547
79
|
|
|
548
|
-
|
|
80
|
+
function f(r) {
|
|
81
|
+
return r.flags;
|
|
82
|
+
}
|
|
549
83
|
|
|
550
|
-
|
|
84
|
+
var s = /test/g.flags === "g" ? f : i;
|
|
551
85
|
|
|
552
|
-
|
|
86
|
+
function p(r) {
|
|
87
|
+
var t = e.call(r);
|
|
88
|
+
return t.substring(8, t.length - 1);
|
|
89
|
+
}
|
|
553
90
|
|
|
554
|
-
|
|
91
|
+
function y(r) {
|
|
92
|
+
return r[Symbol.toStringTag] || p(r);
|
|
93
|
+
}
|
|
555
94
|
|
|
556
|
-
|
|
557
|
-
if (typeof e.expandRange === "function") {
|
|
558
|
-
return e.expandRange(...t, e);
|
|
559
|
-
}
|
|
560
|
-
t.sort();
|
|
561
|
-
const n = `[${t.join("-")}]`;
|
|
562
|
-
try {
|
|
563
|
-
new RegExp(n);
|
|
564
|
-
} catch (e) {
|
|
565
|
-
return t.map(t => Y.escapeRegex(t)).join("..");
|
|
566
|
-
}
|
|
567
|
-
return n;
|
|
568
|
-
};
|
|
95
|
+
var v = typeof Symbol !== "undefined" ? y : p;
|
|
569
96
|
|
|
570
|
-
|
|
97
|
+
var l = Object.defineProperty, b = Object.getOwnPropertyDescriptor, d = Object.getOwnPropertyNames, h = Object.getOwnPropertySymbols;
|
|
571
98
|
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
value: "",
|
|
588
|
-
output: n.prepend || ""
|
|
589
|
-
};
|
|
590
|
-
const r = [ s ];
|
|
591
|
-
const a = n.capture ? "" : "?:";
|
|
592
|
-
const i = Y.isWindows(e);
|
|
593
|
-
const c = Z.globChars(i);
|
|
594
|
-
const l = Z.extglobChars(c);
|
|
595
|
-
const {DOT_LITERAL: p, PLUS_LITERAL: f, SLASH_LITERAL: A, ONE_CHAR: R, DOTS_SLASH: h, NO_DOT: _, NO_DOT_SLASH: E, NO_DOTS_SLASH: g, QMARK: b, QMARK_NO_DOT: y, STAR: S, START_ANCHOR: $} = c;
|
|
596
|
-
const C = t => `(${a}(?:(?!${$}${t.dot ? h : p}).)*?)`;
|
|
597
|
-
const x = n.dot ? "" : _;
|
|
598
|
-
const d = n.dot ? b : y;
|
|
599
|
-
let H = n.bash === true ? C(n) : S;
|
|
600
|
-
if (n.capture) {
|
|
601
|
-
H = `(${H})`;
|
|
602
|
-
}
|
|
603
|
-
if (typeof n.noext === "boolean") {
|
|
604
|
-
n.noextglob = n.noext;
|
|
605
|
-
}
|
|
606
|
-
const v = {
|
|
607
|
-
input: t,
|
|
608
|
-
index: -1,
|
|
609
|
-
start: 0,
|
|
610
|
-
dot: n.dot === true,
|
|
611
|
-
consumed: "",
|
|
612
|
-
output: "",
|
|
613
|
-
prefix: "",
|
|
614
|
-
backtrack: false,
|
|
615
|
-
negated: false,
|
|
616
|
-
brackets: 0,
|
|
617
|
-
braces: 0,
|
|
618
|
-
parens: 0,
|
|
619
|
-
quotes: 0,
|
|
620
|
-
globstar: false,
|
|
621
|
-
tokens: r
|
|
622
|
-
};
|
|
623
|
-
t = Y.removePrefix(t, v);
|
|
624
|
-
o = t.length;
|
|
625
|
-
const T = [];
|
|
626
|
-
const L = [];
|
|
627
|
-
const O = [];
|
|
628
|
-
let k = s;
|
|
629
|
-
let m;
|
|
630
|
-
const w = () => v.index === o - 1;
|
|
631
|
-
const N = v.peek = (e = 1) => t[v.index + e];
|
|
632
|
-
const I = v.advance = () => t[++v.index] || "";
|
|
633
|
-
const M = () => t.slice(v.index + 1);
|
|
634
|
-
const B = (t = "", e = 0) => {
|
|
635
|
-
v.consumed += t;
|
|
636
|
-
v.index += e;
|
|
637
|
-
};
|
|
638
|
-
const G = t => {
|
|
639
|
-
v.output += t.output != null ? t.output : t.value;
|
|
640
|
-
B(t.value);
|
|
641
|
-
};
|
|
642
|
-
const D = () => {
|
|
643
|
-
let t = 1;
|
|
644
|
-
while (N() === "!" && (N(2) !== "(" || N(3) === "?")) {
|
|
645
|
-
I();
|
|
646
|
-
v.start++;
|
|
647
|
-
t++;
|
|
648
|
-
}
|
|
649
|
-
if (t % 2 === 0) {
|
|
650
|
-
return false;
|
|
651
|
-
}
|
|
652
|
-
v.negated = true;
|
|
653
|
-
v.start++;
|
|
654
|
-
return true;
|
|
655
|
-
};
|
|
656
|
-
const P = t => {
|
|
657
|
-
v[t]++;
|
|
658
|
-
O.push(t);
|
|
659
|
-
};
|
|
660
|
-
const K = t => {
|
|
661
|
-
v[t]--;
|
|
662
|
-
O.pop();
|
|
663
|
-
};
|
|
664
|
-
const U = t => {
|
|
665
|
-
if (k.type === "globstar") {
|
|
666
|
-
const e = v.braces > 0 && (t.type === "comma" || t.type === "brace");
|
|
667
|
-
const n = t.extglob === true || T.length && (t.type === "pipe" || t.type === "paren");
|
|
668
|
-
if (t.type !== "slash" && t.type !== "paren" && !e && !n) {
|
|
669
|
-
v.output = v.output.slice(0, -k.output.length);
|
|
670
|
-
k.type = "star";
|
|
671
|
-
k.value = "*";
|
|
672
|
-
k.output = H;
|
|
673
|
-
v.output += k.output;
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
if (T.length && t.type !== "paren") {
|
|
677
|
-
T[T.length - 1].inner += t.value;
|
|
678
|
-
}
|
|
679
|
-
if (t.value || t.output) G(t);
|
|
680
|
-
if (k && k.type === "text" && t.type === "text") {
|
|
681
|
-
k.value += t.value;
|
|
682
|
-
k.output = (k.output || "") + t.value;
|
|
683
|
-
return;
|
|
684
|
-
}
|
|
685
|
-
t.prev = k;
|
|
686
|
-
r.push(t);
|
|
687
|
-
k = t;
|
|
688
|
-
};
|
|
689
|
-
const X = (t, e) => {
|
|
690
|
-
const u = {
|
|
691
|
-
...l[e],
|
|
692
|
-
conditions: 1,
|
|
693
|
-
inner: ""
|
|
694
|
-
};
|
|
695
|
-
u.prev = k;
|
|
696
|
-
u.parens = v.parens;
|
|
697
|
-
u.output = v.output;
|
|
698
|
-
const o = (n.capture ? "(" : "") + u.open;
|
|
699
|
-
P("parens");
|
|
700
|
-
U({
|
|
701
|
-
type: t,
|
|
702
|
-
value: e,
|
|
703
|
-
output: v.output ? "" : R
|
|
704
|
-
});
|
|
705
|
-
U({
|
|
706
|
-
type: "paren",
|
|
707
|
-
extglob: true,
|
|
708
|
-
value: I(),
|
|
709
|
-
output: o
|
|
710
|
-
});
|
|
711
|
-
T.push(u);
|
|
712
|
-
};
|
|
713
|
-
const F = t => {
|
|
714
|
-
let u = t.close + (n.capture ? ")" : "");
|
|
715
|
-
let o;
|
|
716
|
-
if (t.type === "negate") {
|
|
717
|
-
let s = H;
|
|
718
|
-
if (t.inner && t.inner.length > 1 && t.inner.includes("/")) {
|
|
719
|
-
s = C(n);
|
|
720
|
-
}
|
|
721
|
-
if (s !== H || w() || /^\)+$/.test(M())) {
|
|
722
|
-
u = t.close = `)$))${s}`;
|
|
723
|
-
}
|
|
724
|
-
if (t.inner.includes("*") && (o = M()) && /^\.[^\\/.]+$/.test(o)) {
|
|
725
|
-
const n = ot(o, {
|
|
726
|
-
...e,
|
|
727
|
-
fastpaths: false
|
|
728
|
-
}).output;
|
|
729
|
-
u = t.close = `)${n})${s})`;
|
|
730
|
-
}
|
|
731
|
-
if (t.prev.type === "bos") {
|
|
732
|
-
v.negatedExtglob = true;
|
|
733
|
-
}
|
|
734
|
-
}
|
|
735
|
-
U({
|
|
736
|
-
type: "paren",
|
|
737
|
-
extglob: true,
|
|
738
|
-
value: m,
|
|
739
|
-
output: u
|
|
740
|
-
});
|
|
741
|
-
K("parens");
|
|
742
|
-
};
|
|
743
|
-
if (n.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) {
|
|
744
|
-
let u = false;
|
|
745
|
-
let o = t.replace(tt, (t, e, n, o, s, r) => {
|
|
746
|
-
if (o === "\\") {
|
|
747
|
-
u = true;
|
|
748
|
-
return t;
|
|
749
|
-
}
|
|
750
|
-
if (o === "?") {
|
|
751
|
-
if (e) {
|
|
752
|
-
return e + o + (s ? b.repeat(s.length) : "");
|
|
753
|
-
}
|
|
754
|
-
if (r === 0) {
|
|
755
|
-
return d + (s ? b.repeat(s.length) : "");
|
|
756
|
-
}
|
|
757
|
-
return b.repeat(n.length);
|
|
758
|
-
}
|
|
759
|
-
if (o === ".") {
|
|
760
|
-
return p.repeat(n.length);
|
|
761
|
-
}
|
|
762
|
-
if (o === "*") {
|
|
763
|
-
if (e) {
|
|
764
|
-
return e + o + (s ? H : "");
|
|
765
|
-
}
|
|
766
|
-
return H;
|
|
767
|
-
}
|
|
768
|
-
return e ? t : `\\${t}`;
|
|
769
|
-
});
|
|
770
|
-
if (u === true) {
|
|
771
|
-
if (n.unescape === true) {
|
|
772
|
-
o = o.replace(/\\/g, "");
|
|
773
|
-
} else {
|
|
774
|
-
o = o.replace(/\\+/g, t => t.length % 2 === 0 ? "\\\\" : t ? "\\" : "");
|
|
775
|
-
}
|
|
776
|
-
}
|
|
777
|
-
if (o === t && n.contains === true) {
|
|
778
|
-
v.output = t;
|
|
779
|
-
return v;
|
|
780
|
-
}
|
|
781
|
-
v.output = Y.wrapOutput(o, v, e);
|
|
782
|
-
return v;
|
|
783
|
-
}
|
|
784
|
-
while (!w()) {
|
|
785
|
-
m = I();
|
|
786
|
-
if (m === "\0") {
|
|
787
|
-
continue;
|
|
788
|
-
}
|
|
789
|
-
if (m === "\\") {
|
|
790
|
-
const t = N();
|
|
791
|
-
if (t === "/" && n.bash !== true) {
|
|
792
|
-
continue;
|
|
793
|
-
}
|
|
794
|
-
if (t === "." || t === ";") {
|
|
795
|
-
continue;
|
|
796
|
-
}
|
|
797
|
-
if (!t) {
|
|
798
|
-
m += "\\";
|
|
799
|
-
U({
|
|
800
|
-
type: "text",
|
|
801
|
-
value: m
|
|
802
|
-
});
|
|
803
|
-
continue;
|
|
804
|
-
}
|
|
805
|
-
const e = /^\\+/.exec(M());
|
|
806
|
-
let u = 0;
|
|
807
|
-
if (e && e[0].length > 2) {
|
|
808
|
-
u = e[0].length;
|
|
809
|
-
v.index += u;
|
|
810
|
-
if (u % 2 !== 0) {
|
|
811
|
-
m += "\\";
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
if (n.unescape === true) {
|
|
815
|
-
m = I();
|
|
816
|
-
} else {
|
|
817
|
-
m += I();
|
|
818
|
-
}
|
|
819
|
-
if (v.brackets === 0) {
|
|
820
|
-
U({
|
|
821
|
-
type: "text",
|
|
822
|
-
value: m
|
|
823
|
-
});
|
|
824
|
-
continue;
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
|
-
if (v.brackets > 0 && (m !== "]" || k.value === "[" || k.value === "[^")) {
|
|
828
|
-
if (n.posix !== false && m === ":") {
|
|
829
|
-
const t = k.value.slice(1);
|
|
830
|
-
if (t.includes("[")) {
|
|
831
|
-
k.posix = true;
|
|
832
|
-
if (t.includes(":")) {
|
|
833
|
-
const t = k.value.lastIndexOf("[");
|
|
834
|
-
const e = k.value.slice(0, t);
|
|
835
|
-
const n = k.value.slice(t + 2);
|
|
836
|
-
const u = V[n];
|
|
837
|
-
if (u) {
|
|
838
|
-
k.value = e + u;
|
|
839
|
-
v.backtrack = true;
|
|
840
|
-
I();
|
|
841
|
-
if (!s.output && r.indexOf(k) === 1) {
|
|
842
|
-
s.output = R;
|
|
843
|
-
}
|
|
844
|
-
continue;
|
|
845
|
-
}
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
if (m === "[" && N() !== ":" || m === "-" && N() === "]") {
|
|
850
|
-
m = `\\${m}`;
|
|
851
|
-
}
|
|
852
|
-
if (m === "]" && (k.value === "[" || k.value === "[^")) {
|
|
853
|
-
m = `\\${m}`;
|
|
854
|
-
}
|
|
855
|
-
if (n.posix === true && m === "!" && k.value === "[") {
|
|
856
|
-
m = "^";
|
|
857
|
-
}
|
|
858
|
-
k.value += m;
|
|
859
|
-
G({
|
|
860
|
-
value: m
|
|
861
|
-
});
|
|
862
|
-
continue;
|
|
863
|
-
}
|
|
864
|
-
if (v.quotes === 1 && m !== '"') {
|
|
865
|
-
m = Y.escapeRegex(m);
|
|
866
|
-
k.value += m;
|
|
867
|
-
G({
|
|
868
|
-
value: m
|
|
869
|
-
});
|
|
870
|
-
continue;
|
|
871
|
-
}
|
|
872
|
-
if (m === '"') {
|
|
873
|
-
v.quotes = v.quotes === 1 ? 0 : 1;
|
|
874
|
-
if (n.keepQuotes === true) {
|
|
875
|
-
U({
|
|
876
|
-
type: "text",
|
|
877
|
-
value: m
|
|
878
|
-
});
|
|
879
|
-
}
|
|
880
|
-
continue;
|
|
881
|
-
}
|
|
882
|
-
if (m === "(") {
|
|
883
|
-
P("parens");
|
|
884
|
-
U({
|
|
885
|
-
type: "paren",
|
|
886
|
-
value: m
|
|
887
|
-
});
|
|
888
|
-
continue;
|
|
889
|
-
}
|
|
890
|
-
if (m === ")") {
|
|
891
|
-
if (v.parens === 0 && n.strictBrackets === true) {
|
|
892
|
-
throw new SyntaxError(ut("opening", "("));
|
|
893
|
-
}
|
|
894
|
-
const t = T[T.length - 1];
|
|
895
|
-
if (t && v.parens === t.parens + 1) {
|
|
896
|
-
F(T.pop());
|
|
897
|
-
continue;
|
|
898
|
-
}
|
|
899
|
-
U({
|
|
900
|
-
type: "paren",
|
|
901
|
-
value: m,
|
|
902
|
-
output: v.parens ? ")" : "\\)"
|
|
903
|
-
});
|
|
904
|
-
K("parens");
|
|
905
|
-
continue;
|
|
906
|
-
}
|
|
907
|
-
if (m === "[") {
|
|
908
|
-
if (n.nobracket === true || !M().includes("]")) {
|
|
909
|
-
if (n.nobracket !== true && n.strictBrackets === true) {
|
|
910
|
-
throw new SyntaxError(ut("closing", "]"));
|
|
911
|
-
}
|
|
912
|
-
m = `\\${m}`;
|
|
913
|
-
} else {
|
|
914
|
-
P("brackets");
|
|
915
|
-
}
|
|
916
|
-
U({
|
|
917
|
-
type: "bracket",
|
|
918
|
-
value: m
|
|
919
|
-
});
|
|
920
|
-
continue;
|
|
921
|
-
}
|
|
922
|
-
if (m === "]") {
|
|
923
|
-
if (n.nobracket === true || k && k.type === "bracket" && k.value.length === 1) {
|
|
924
|
-
U({
|
|
925
|
-
type: "text",
|
|
926
|
-
value: m,
|
|
927
|
-
output: `\\${m}`
|
|
928
|
-
});
|
|
929
|
-
continue;
|
|
930
|
-
}
|
|
931
|
-
if (v.brackets === 0) {
|
|
932
|
-
if (n.strictBrackets === true) {
|
|
933
|
-
throw new SyntaxError(ut("opening", "["));
|
|
934
|
-
}
|
|
935
|
-
U({
|
|
936
|
-
type: "text",
|
|
937
|
-
value: m,
|
|
938
|
-
output: `\\${m}`
|
|
939
|
-
});
|
|
940
|
-
continue;
|
|
941
|
-
}
|
|
942
|
-
K("brackets");
|
|
943
|
-
const t = k.value.slice(1);
|
|
944
|
-
if (k.posix !== true && t[0] === "^" && !t.includes("/")) {
|
|
945
|
-
m = `/${m}`;
|
|
946
|
-
}
|
|
947
|
-
k.value += m;
|
|
948
|
-
G({
|
|
949
|
-
value: m
|
|
950
|
-
});
|
|
951
|
-
if (n.literalBrackets === false || Y.hasRegexChars(t)) {
|
|
952
|
-
continue;
|
|
953
|
-
}
|
|
954
|
-
const e = Y.escapeRegex(k.value);
|
|
955
|
-
v.output = v.output.slice(0, -k.value.length);
|
|
956
|
-
if (n.literalBrackets === true) {
|
|
957
|
-
v.output += e;
|
|
958
|
-
k.value = e;
|
|
959
|
-
continue;
|
|
960
|
-
}
|
|
961
|
-
k.value = `(${a}${e}|${k.value})`;
|
|
962
|
-
v.output += k.value;
|
|
963
|
-
continue;
|
|
964
|
-
}
|
|
965
|
-
if (m === "{" && n.nobrace !== true) {
|
|
966
|
-
P("braces");
|
|
967
|
-
const t = {
|
|
968
|
-
type: "brace",
|
|
969
|
-
value: m,
|
|
970
|
-
output: "(",
|
|
971
|
-
outputIndex: v.output.length,
|
|
972
|
-
tokensIndex: v.tokens.length
|
|
973
|
-
};
|
|
974
|
-
L.push(t);
|
|
975
|
-
U(t);
|
|
976
|
-
continue;
|
|
977
|
-
}
|
|
978
|
-
if (m === "}") {
|
|
979
|
-
const t = L[L.length - 1];
|
|
980
|
-
if (n.nobrace === true || !t) {
|
|
981
|
-
U({
|
|
982
|
-
type: "text",
|
|
983
|
-
value: m,
|
|
984
|
-
output: m
|
|
985
|
-
});
|
|
986
|
-
continue;
|
|
987
|
-
}
|
|
988
|
-
let e = ")";
|
|
989
|
-
if (t.dots === true) {
|
|
990
|
-
const t = r.slice();
|
|
991
|
-
const u = [];
|
|
992
|
-
for (let e = t.length - 1; e >= 0; e--) {
|
|
993
|
-
r.pop();
|
|
994
|
-
if (t[e].type === "brace") {
|
|
995
|
-
break;
|
|
996
|
-
}
|
|
997
|
-
if (t[e].type !== "dots") {
|
|
998
|
-
u.unshift(t[e].value);
|
|
999
|
-
}
|
|
1000
|
-
}
|
|
1001
|
-
e = nt(u, n);
|
|
1002
|
-
v.backtrack = true;
|
|
1003
|
-
}
|
|
1004
|
-
if (t.comma !== true && t.dots !== true) {
|
|
1005
|
-
const n = v.output.slice(0, t.outputIndex);
|
|
1006
|
-
const u = v.tokens.slice(t.tokensIndex);
|
|
1007
|
-
t.value = t.output = "\\{";
|
|
1008
|
-
m = e = "\\}";
|
|
1009
|
-
v.output = n;
|
|
1010
|
-
for (const t of u) {
|
|
1011
|
-
v.output += t.output || t.value;
|
|
1012
|
-
}
|
|
1013
|
-
}
|
|
1014
|
-
U({
|
|
1015
|
-
type: "brace",
|
|
1016
|
-
value: m,
|
|
1017
|
-
output: e
|
|
1018
|
-
});
|
|
1019
|
-
K("braces");
|
|
1020
|
-
L.pop();
|
|
1021
|
-
continue;
|
|
1022
|
-
}
|
|
1023
|
-
if (m === "|") {
|
|
1024
|
-
if (T.length > 0) {
|
|
1025
|
-
T[T.length - 1].conditions++;
|
|
1026
|
-
}
|
|
1027
|
-
U({
|
|
1028
|
-
type: "text",
|
|
1029
|
-
value: m
|
|
1030
|
-
});
|
|
1031
|
-
continue;
|
|
1032
|
-
}
|
|
1033
|
-
if (m === ",") {
|
|
1034
|
-
let t = m;
|
|
1035
|
-
const e = L[L.length - 1];
|
|
1036
|
-
if (e && O[O.length - 1] === "braces") {
|
|
1037
|
-
e.comma = true;
|
|
1038
|
-
t = "|";
|
|
1039
|
-
}
|
|
1040
|
-
U({
|
|
1041
|
-
type: "comma",
|
|
1042
|
-
value: m,
|
|
1043
|
-
output: t
|
|
1044
|
-
});
|
|
1045
|
-
continue;
|
|
1046
|
-
}
|
|
1047
|
-
if (m === "/") {
|
|
1048
|
-
if (k.type === "dot" && v.index === v.start + 1) {
|
|
1049
|
-
v.start = v.index + 1;
|
|
1050
|
-
v.consumed = "";
|
|
1051
|
-
v.output = "";
|
|
1052
|
-
r.pop();
|
|
1053
|
-
k = s;
|
|
1054
|
-
continue;
|
|
1055
|
-
}
|
|
1056
|
-
U({
|
|
1057
|
-
type: "slash",
|
|
1058
|
-
value: m,
|
|
1059
|
-
output: A
|
|
1060
|
-
});
|
|
1061
|
-
continue;
|
|
1062
|
-
}
|
|
1063
|
-
if (m === ".") {
|
|
1064
|
-
if (v.braces > 0 && k.type === "dot") {
|
|
1065
|
-
if (k.value === ".") k.output = p;
|
|
1066
|
-
const t = L[L.length - 1];
|
|
1067
|
-
k.type = "dots";
|
|
1068
|
-
k.output += m;
|
|
1069
|
-
k.value += m;
|
|
1070
|
-
t.dots = true;
|
|
1071
|
-
continue;
|
|
1072
|
-
}
|
|
1073
|
-
if (v.braces + v.parens === 0 && k.type !== "bos" && k.type !== "slash") {
|
|
1074
|
-
U({
|
|
1075
|
-
type: "text",
|
|
1076
|
-
value: m,
|
|
1077
|
-
output: p
|
|
1078
|
-
});
|
|
1079
|
-
continue;
|
|
1080
|
-
}
|
|
1081
|
-
U({
|
|
1082
|
-
type: "dot",
|
|
1083
|
-
value: m,
|
|
1084
|
-
output: p
|
|
1085
|
-
});
|
|
1086
|
-
continue;
|
|
1087
|
-
}
|
|
1088
|
-
if (m === "?") {
|
|
1089
|
-
const t = k && k.value === "(";
|
|
1090
|
-
if (!t && n.noextglob !== true && N() === "(" && N(2) !== "?") {
|
|
1091
|
-
X("qmark", m);
|
|
1092
|
-
continue;
|
|
1093
|
-
}
|
|
1094
|
-
if (k && k.type === "paren") {
|
|
1095
|
-
const t = N();
|
|
1096
|
-
let e = m;
|
|
1097
|
-
if (t === "<" && !Y.supportsLookbehinds()) {
|
|
1098
|
-
throw new Error("Node.js v10 or higher is required for regex lookbehinds");
|
|
1099
|
-
}
|
|
1100
|
-
if (k.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(M())) {
|
|
1101
|
-
e = `\\${m}`;
|
|
1102
|
-
}
|
|
1103
|
-
U({
|
|
1104
|
-
type: "text",
|
|
1105
|
-
value: m,
|
|
1106
|
-
output: e
|
|
1107
|
-
});
|
|
1108
|
-
continue;
|
|
1109
|
-
}
|
|
1110
|
-
if (n.dot !== true && (k.type === "slash" || k.type === "bos")) {
|
|
1111
|
-
U({
|
|
1112
|
-
type: "qmark",
|
|
1113
|
-
value: m,
|
|
1114
|
-
output: y
|
|
1115
|
-
});
|
|
1116
|
-
continue;
|
|
1117
|
-
}
|
|
1118
|
-
U({
|
|
1119
|
-
type: "qmark",
|
|
1120
|
-
value: m,
|
|
1121
|
-
output: b
|
|
1122
|
-
});
|
|
1123
|
-
continue;
|
|
1124
|
-
}
|
|
1125
|
-
if (m === "!") {
|
|
1126
|
-
if (n.noextglob !== true && N() === "(") {
|
|
1127
|
-
if (N(2) !== "?" || !/[!=<:]/.test(N(3))) {
|
|
1128
|
-
X("negate", m);
|
|
1129
|
-
continue;
|
|
1130
|
-
}
|
|
1131
|
-
}
|
|
1132
|
-
if (n.nonegate !== true && v.index === 0) {
|
|
1133
|
-
D();
|
|
1134
|
-
continue;
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
if (m === "+") {
|
|
1138
|
-
if (n.noextglob !== true && N() === "(" && N(2) !== "?") {
|
|
1139
|
-
X("plus", m);
|
|
1140
|
-
continue;
|
|
1141
|
-
}
|
|
1142
|
-
if (k && k.value === "(" || n.regex === false) {
|
|
1143
|
-
U({
|
|
1144
|
-
type: "plus",
|
|
1145
|
-
value: m,
|
|
1146
|
-
output: f
|
|
1147
|
-
});
|
|
1148
|
-
continue;
|
|
1149
|
-
}
|
|
1150
|
-
if (k && (k.type === "bracket" || k.type === "paren" || k.type === "brace") || v.parens > 0) {
|
|
1151
|
-
U({
|
|
1152
|
-
type: "plus",
|
|
1153
|
-
value: m
|
|
1154
|
-
});
|
|
1155
|
-
continue;
|
|
1156
|
-
}
|
|
1157
|
-
U({
|
|
1158
|
-
type: "plus",
|
|
1159
|
-
value: f
|
|
1160
|
-
});
|
|
1161
|
-
continue;
|
|
1162
|
-
}
|
|
1163
|
-
if (m === "@") {
|
|
1164
|
-
if (n.noextglob !== true && N() === "(" && N(2) !== "?") {
|
|
1165
|
-
U({
|
|
1166
|
-
type: "at",
|
|
1167
|
-
extglob: true,
|
|
1168
|
-
value: m,
|
|
1169
|
-
output: ""
|
|
1170
|
-
});
|
|
1171
|
-
continue;
|
|
1172
|
-
}
|
|
1173
|
-
U({
|
|
1174
|
-
type: "text",
|
|
1175
|
-
value: m
|
|
1176
|
-
});
|
|
1177
|
-
continue;
|
|
1178
|
-
}
|
|
1179
|
-
if (m !== "*") {
|
|
1180
|
-
if (m === "$" || m === "^") {
|
|
1181
|
-
m = `\\${m}`;
|
|
1182
|
-
}
|
|
1183
|
-
const t = J.exec(M());
|
|
1184
|
-
if (t) {
|
|
1185
|
-
m += t[0];
|
|
1186
|
-
v.index += t[0].length;
|
|
1187
|
-
}
|
|
1188
|
-
U({
|
|
1189
|
-
type: "text",
|
|
1190
|
-
value: m
|
|
1191
|
-
});
|
|
1192
|
-
continue;
|
|
1193
|
-
}
|
|
1194
|
-
if (k && (k.type === "globstar" || k.star === true)) {
|
|
1195
|
-
k.type = "star";
|
|
1196
|
-
k.star = true;
|
|
1197
|
-
k.value += m;
|
|
1198
|
-
k.output = H;
|
|
1199
|
-
v.backtrack = true;
|
|
1200
|
-
v.globstar = true;
|
|
1201
|
-
B(m);
|
|
1202
|
-
continue;
|
|
1203
|
-
}
|
|
1204
|
-
let e = M();
|
|
1205
|
-
if (n.noextglob !== true && /^\([^?]/.test(e)) {
|
|
1206
|
-
X("star", m);
|
|
1207
|
-
continue;
|
|
1208
|
-
}
|
|
1209
|
-
if (k.type === "star") {
|
|
1210
|
-
if (n.noglobstar === true) {
|
|
1211
|
-
B(m);
|
|
1212
|
-
continue;
|
|
1213
|
-
}
|
|
1214
|
-
const u = k.prev;
|
|
1215
|
-
const o = u.prev;
|
|
1216
|
-
const s = u.type === "slash" || u.type === "bos";
|
|
1217
|
-
const r = o && (o.type === "star" || o.type === "globstar");
|
|
1218
|
-
if (n.bash === true && (!s || e[0] && e[0] !== "/")) {
|
|
1219
|
-
U({
|
|
1220
|
-
type: "star",
|
|
1221
|
-
value: m,
|
|
1222
|
-
output: ""
|
|
1223
|
-
});
|
|
1224
|
-
continue;
|
|
1225
|
-
}
|
|
1226
|
-
const a = v.braces > 0 && (u.type === "comma" || u.type === "brace");
|
|
1227
|
-
const i = T.length && (u.type === "pipe" || u.type === "paren");
|
|
1228
|
-
if (!s && u.type !== "paren" && !a && !i) {
|
|
1229
|
-
U({
|
|
1230
|
-
type: "star",
|
|
1231
|
-
value: m,
|
|
1232
|
-
output: ""
|
|
1233
|
-
});
|
|
1234
|
-
continue;
|
|
1235
|
-
}
|
|
1236
|
-
while (e.slice(0, 3) === "/**") {
|
|
1237
|
-
const n = t[v.index + 4];
|
|
1238
|
-
if (n && n !== "/") {
|
|
1239
|
-
break;
|
|
1240
|
-
}
|
|
1241
|
-
e = e.slice(3);
|
|
1242
|
-
B("/**", 3);
|
|
1243
|
-
}
|
|
1244
|
-
if (u.type === "bos" && w()) {
|
|
1245
|
-
k.type = "globstar";
|
|
1246
|
-
k.value += m;
|
|
1247
|
-
k.output = C(n);
|
|
1248
|
-
v.output = k.output;
|
|
1249
|
-
v.globstar = true;
|
|
1250
|
-
B(m);
|
|
1251
|
-
continue;
|
|
1252
|
-
}
|
|
1253
|
-
if (u.type === "slash" && u.prev.type !== "bos" && !r && w()) {
|
|
1254
|
-
v.output = v.output.slice(0, -(u.output + k.output).length);
|
|
1255
|
-
u.output = `(?:${u.output}`;
|
|
1256
|
-
k.type = "globstar";
|
|
1257
|
-
k.output = C(n) + (n.strictSlashes ? ")" : "|$)");
|
|
1258
|
-
k.value += m;
|
|
1259
|
-
v.globstar = true;
|
|
1260
|
-
v.output += u.output + k.output;
|
|
1261
|
-
B(m);
|
|
1262
|
-
continue;
|
|
1263
|
-
}
|
|
1264
|
-
if (u.type === "slash" && u.prev.type !== "bos" && e[0] === "/") {
|
|
1265
|
-
const t = e[1] !== void 0 ? "|$" : "";
|
|
1266
|
-
v.output = v.output.slice(0, -(u.output + k.output).length);
|
|
1267
|
-
u.output = `(?:${u.output}`;
|
|
1268
|
-
k.type = "globstar";
|
|
1269
|
-
k.output = `${C(n)}${A}|${A}${t})`;
|
|
1270
|
-
k.value += m;
|
|
1271
|
-
v.output += u.output + k.output;
|
|
1272
|
-
v.globstar = true;
|
|
1273
|
-
B(m + I());
|
|
1274
|
-
U({
|
|
1275
|
-
type: "slash",
|
|
1276
|
-
value: "/",
|
|
1277
|
-
output: ""
|
|
1278
|
-
});
|
|
1279
|
-
continue;
|
|
1280
|
-
}
|
|
1281
|
-
if (u.type === "bos" && e[0] === "/") {
|
|
1282
|
-
k.type = "globstar";
|
|
1283
|
-
k.value += m;
|
|
1284
|
-
k.output = `(?:^|${A}|${C(n)}${A})`;
|
|
1285
|
-
v.output = k.output;
|
|
1286
|
-
v.globstar = true;
|
|
1287
|
-
B(m + I());
|
|
1288
|
-
U({
|
|
1289
|
-
type: "slash",
|
|
1290
|
-
value: "/",
|
|
1291
|
-
output: ""
|
|
1292
|
-
});
|
|
1293
|
-
continue;
|
|
1294
|
-
}
|
|
1295
|
-
v.output = v.output.slice(0, -k.output.length);
|
|
1296
|
-
k.type = "globstar";
|
|
1297
|
-
k.output = C(n);
|
|
1298
|
-
k.value += m;
|
|
1299
|
-
v.output += k.output;
|
|
1300
|
-
v.globstar = true;
|
|
1301
|
-
B(m);
|
|
99
|
+
var g = Object.prototype, j = g.hasOwnProperty, O = g.propertyIsEnumerable;
|
|
100
|
+
|
|
101
|
+
var w = typeof h === "function";
|
|
102
|
+
|
|
103
|
+
function C(r) {
|
|
104
|
+
return d(r).concat(h(r));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
var A = w ? C : d;
|
|
108
|
+
|
|
109
|
+
function m(r, t, e) {
|
|
110
|
+
var n = A(r);
|
|
111
|
+
for (var o = 0, a = n.length, c = void 0, u = void 0; o < a; ++o) {
|
|
112
|
+
c = n[o];
|
|
113
|
+
if (c === "callee" || c === "caller") {
|
|
1302
114
|
continue;
|
|
1303
115
|
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
output: H
|
|
1308
|
-
};
|
|
1309
|
-
if (n.bash === true) {
|
|
1310
|
-
u.output = ".*?";
|
|
1311
|
-
if (k.type === "bos" || k.type === "slash") {
|
|
1312
|
-
u.output = x + u.output;
|
|
1313
|
-
}
|
|
1314
|
-
U(u);
|
|
116
|
+
u = b(r, c);
|
|
117
|
+
if (!u) {
|
|
118
|
+
t[c] = e.copier(r[c], e);
|
|
1315
119
|
continue;
|
|
1316
120
|
}
|
|
1317
|
-
if (
|
|
1318
|
-
u.
|
|
1319
|
-
U(u);
|
|
1320
|
-
continue;
|
|
121
|
+
if (!u.get && !u.set) {
|
|
122
|
+
u.value = e.copier(u.value, e);
|
|
1321
123
|
}
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
} else if (n.dot === true) {
|
|
1327
|
-
v.output += g;
|
|
1328
|
-
k.output += g;
|
|
1329
|
-
} else {
|
|
1330
|
-
v.output += x;
|
|
1331
|
-
k.output += x;
|
|
1332
|
-
}
|
|
1333
|
-
if (N() !== "*") {
|
|
1334
|
-
v.output += R;
|
|
1335
|
-
k.output += R;
|
|
1336
|
-
}
|
|
124
|
+
try {
|
|
125
|
+
l(t, c, u);
|
|
126
|
+
} catch (r) {
|
|
127
|
+
t[c] = u.value;
|
|
1337
128
|
}
|
|
1338
|
-
U(u);
|
|
1339
|
-
}
|
|
1340
|
-
while (v.brackets > 0) {
|
|
1341
|
-
if (n.strictBrackets === true) throw new SyntaxError(ut("closing", "]"));
|
|
1342
|
-
v.output = Y.escapeLast(v.output, "[");
|
|
1343
|
-
K("brackets");
|
|
1344
129
|
}
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
v.output = Y.escapeLast(v.output, "(");
|
|
1348
|
-
K("parens");
|
|
1349
|
-
}
|
|
1350
|
-
while (v.braces > 0) {
|
|
1351
|
-
if (n.strictBrackets === true) throw new SyntaxError(ut("closing", "}"));
|
|
1352
|
-
v.output = Y.escapeLast(v.output, "{");
|
|
1353
|
-
K("braces");
|
|
1354
|
-
}
|
|
1355
|
-
if (n.strictSlashes !== true && (k.type === "star" || k.type === "bracket")) {
|
|
1356
|
-
U({
|
|
1357
|
-
type: "maybe_slash",
|
|
1358
|
-
value: "",
|
|
1359
|
-
output: `${A}?`
|
|
1360
|
-
});
|
|
1361
|
-
}
|
|
1362
|
-
if (v.backtrack === true) {
|
|
1363
|
-
v.output = "";
|
|
1364
|
-
for (const t of v.tokens) {
|
|
1365
|
-
v.output += t.output != null ? t.output : t.value;
|
|
1366
|
-
if (t.suffix) {
|
|
1367
|
-
v.output += t.suffix;
|
|
1368
|
-
}
|
|
1369
|
-
}
|
|
1370
|
-
}
|
|
1371
|
-
return v;
|
|
1372
|
-
};
|
|
130
|
+
return t;
|
|
131
|
+
}
|
|
1373
132
|
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
const o = t.length;
|
|
1380
|
-
if (o > u) {
|
|
1381
|
-
throw new SyntaxError(`Input length: ${o}, exceeds maximum allowed length: ${u}`);
|
|
133
|
+
function B(r, t) {
|
|
134
|
+
var e = new t.Constructor;
|
|
135
|
+
t.cache.set(r, e);
|
|
136
|
+
for (var n = 0, o = r.length; n < o; ++n) {
|
|
137
|
+
e[n] = t.copier(r[n], t);
|
|
1382
138
|
}
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
const {DOT_LITERAL: r, SLASH_LITERAL: a, ONE_CHAR: i, DOTS_SLASH: c, NO_DOT: l, NO_DOTS: p, NO_DOTS_SLASH: f, STAR: A, START_ANCHOR: R} = Z.globChars(s);
|
|
1386
|
-
const h = n.dot ? p : l;
|
|
1387
|
-
const _ = n.dot ? f : l;
|
|
1388
|
-
const E = n.capture ? "" : "?:";
|
|
1389
|
-
const g = {
|
|
1390
|
-
negated: false,
|
|
1391
|
-
prefix: ""
|
|
1392
|
-
};
|
|
1393
|
-
let b = n.bash === true ? ".*?" : A;
|
|
1394
|
-
if (n.capture) {
|
|
1395
|
-
b = `(${b})`;
|
|
1396
|
-
}
|
|
1397
|
-
const y = t => {
|
|
1398
|
-
if (t.noglobstar === true) return b;
|
|
1399
|
-
return `(${E}(?:(?!${R}${t.dot ? c : r}).)*?)`;
|
|
1400
|
-
};
|
|
1401
|
-
const S = t => {
|
|
1402
|
-
switch (t) {
|
|
1403
|
-
case "*":
|
|
1404
|
-
return `${h}${i}${b}`;
|
|
139
|
+
return e;
|
|
140
|
+
}
|
|
1405
141
|
|
|
1406
|
-
|
|
1407
|
-
|
|
142
|
+
function x(r, t) {
|
|
143
|
+
var e = new t.Constructor;
|
|
144
|
+
t.cache.set(r, e);
|
|
145
|
+
return m(r, e, t);
|
|
146
|
+
}
|
|
1408
147
|
|
|
1409
|
-
|
|
1410
|
-
|
|
148
|
+
function _(r, t) {
|
|
149
|
+
return r.slice(0);
|
|
150
|
+
}
|
|
1411
151
|
|
|
1412
|
-
|
|
1413
|
-
|
|
152
|
+
function S(r, t) {
|
|
153
|
+
return r.slice(0, r.size, r.type);
|
|
154
|
+
}
|
|
1414
155
|
|
|
1415
|
-
|
|
1416
|
-
|
|
156
|
+
function k(r, t) {
|
|
157
|
+
return new t.Constructor(_(r.buffer));
|
|
158
|
+
}
|
|
1417
159
|
|
|
1418
|
-
|
|
1419
|
-
|
|
160
|
+
function P(r, t) {
|
|
161
|
+
return new t.Constructor(r.getTime());
|
|
162
|
+
}
|
|
1420
163
|
|
|
1421
|
-
|
|
1422
|
-
|
|
164
|
+
function E(r, t) {
|
|
165
|
+
var e = new t.Constructor;
|
|
166
|
+
t.cache.set(r, e);
|
|
167
|
+
r.forEach(function(r, n) {
|
|
168
|
+
e.set(n, t.copier(r, t));
|
|
169
|
+
});
|
|
170
|
+
return e;
|
|
171
|
+
}
|
|
1423
172
|
|
|
1424
|
-
|
|
1425
|
-
|
|
173
|
+
function I(r, t) {
|
|
174
|
+
return m(r, E(r, t), t);
|
|
175
|
+
}
|
|
1426
176
|
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
return n + r + e[2];
|
|
1434
|
-
}
|
|
177
|
+
function M(r, t) {
|
|
178
|
+
var e = u(t.prototype);
|
|
179
|
+
t.cache.set(r, e);
|
|
180
|
+
for (var n in r) {
|
|
181
|
+
if (j.call(r, n)) {
|
|
182
|
+
e[n] = t.copier(r[n], t);
|
|
1435
183
|
}
|
|
1436
|
-
};
|
|
1437
|
-
const $ = Y.removePrefix(t, g);
|
|
1438
|
-
let C = S($);
|
|
1439
|
-
if (C && n.strictSlashes !== true) {
|
|
1440
|
-
C += `${a}?`;
|
|
1441
184
|
}
|
|
1442
|
-
return
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
var st = ot;
|
|
185
|
+
return e;
|
|
186
|
+
}
|
|
1446
187
|
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
const ct = r;
|
|
1454
|
-
|
|
1455
|
-
const lt = T;
|
|
1456
|
-
|
|
1457
|
-
const pt = t => t && typeof t === "object" && !Array.isArray(t);
|
|
1458
|
-
|
|
1459
|
-
const ft = (t, e, n = false) => {
|
|
1460
|
-
if (Array.isArray(t)) {
|
|
1461
|
-
const u = t.map(t => ft(t, e, n));
|
|
1462
|
-
const o = t => {
|
|
1463
|
-
for (const e of u) {
|
|
1464
|
-
const n = e(t);
|
|
1465
|
-
if (n) return n;
|
|
1466
|
-
}
|
|
1467
|
-
return false;
|
|
1468
|
-
};
|
|
1469
|
-
return o;
|
|
1470
|
-
}
|
|
1471
|
-
const u = pt(t) && t.tokens && t.input;
|
|
1472
|
-
if (t === "" || typeof t !== "string" && !u) {
|
|
1473
|
-
throw new TypeError("Expected pattern to be a non-empty string");
|
|
1474
|
-
}
|
|
1475
|
-
const o = e || {};
|
|
1476
|
-
const s = ct.isWindows(e);
|
|
1477
|
-
const r = u ? ft.compileRe(t, e) : ft.makeRe(t, e, false, true);
|
|
1478
|
-
const a = r.state;
|
|
1479
|
-
delete r.state;
|
|
1480
|
-
let i = () => false;
|
|
1481
|
-
if (o.ignore) {
|
|
1482
|
-
const t = {
|
|
1483
|
-
...e,
|
|
1484
|
-
ignore: null,
|
|
1485
|
-
onMatch: null,
|
|
1486
|
-
onResult: null
|
|
1487
|
-
};
|
|
1488
|
-
i = ft(o.ignore, t, n);
|
|
1489
|
-
}
|
|
1490
|
-
const c = (n, u = false) => {
|
|
1491
|
-
const {isMatch: c, match: l, output: p} = ft.test(n, r, e, {
|
|
1492
|
-
glob: t,
|
|
1493
|
-
posix: s
|
|
1494
|
-
});
|
|
1495
|
-
const f = {
|
|
1496
|
-
glob: t,
|
|
1497
|
-
state: a,
|
|
1498
|
-
regex: r,
|
|
1499
|
-
posix: s,
|
|
1500
|
-
input: n,
|
|
1501
|
-
output: p,
|
|
1502
|
-
match: l,
|
|
1503
|
-
isMatch: c
|
|
1504
|
-
};
|
|
1505
|
-
if (typeof o.onResult === "function") {
|
|
1506
|
-
o.onResult(f);
|
|
1507
|
-
}
|
|
1508
|
-
if (c === false) {
|
|
1509
|
-
f.isMatch = false;
|
|
1510
|
-
return u ? f : false;
|
|
1511
|
-
}
|
|
1512
|
-
if (i(n)) {
|
|
1513
|
-
if (typeof o.onIgnore === "function") {
|
|
1514
|
-
o.onIgnore(f);
|
|
1515
|
-
}
|
|
1516
|
-
f.isMatch = false;
|
|
1517
|
-
return u ? f : false;
|
|
188
|
+
function U(r, t) {
|
|
189
|
+
var e = u(t.prototype);
|
|
190
|
+
t.cache.set(r, e);
|
|
191
|
+
for (var n in r) {
|
|
192
|
+
if (j.call(r, n)) {
|
|
193
|
+
e[n] = t.copier(r[n], t);
|
|
1518
194
|
}
|
|
1519
|
-
if (typeof o.onMatch === "function") {
|
|
1520
|
-
o.onMatch(f);
|
|
1521
|
-
}
|
|
1522
|
-
return u ? f : true;
|
|
1523
|
-
};
|
|
1524
|
-
if (n) {
|
|
1525
|
-
c.state = a;
|
|
1526
195
|
}
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
throw new TypeError("Expected input to be a string");
|
|
1533
|
-
}
|
|
1534
|
-
if (t === "") {
|
|
1535
|
-
return {
|
|
1536
|
-
isMatch: false,
|
|
1537
|
-
output: ""
|
|
1538
|
-
};
|
|
1539
|
-
}
|
|
1540
|
-
const s = n || {};
|
|
1541
|
-
const r = s.format || (o ? ct.toPosixSlashes : null);
|
|
1542
|
-
let a = t === u;
|
|
1543
|
-
let i = a && r ? r(t) : t;
|
|
1544
|
-
if (a === false) {
|
|
1545
|
-
i = r ? r(t) : t;
|
|
1546
|
-
a = i === u;
|
|
1547
|
-
}
|
|
1548
|
-
if (a === false || s.capture === true) {
|
|
1549
|
-
if (s.matchBase === true || s.basename === true) {
|
|
1550
|
-
a = ft.matchBase(t, e, n, o);
|
|
1551
|
-
} else {
|
|
1552
|
-
a = e.exec(i);
|
|
196
|
+
var o = h(r);
|
|
197
|
+
for (var a = 0, c = o.length, i = void 0; a < c; ++a) {
|
|
198
|
+
i = o[a];
|
|
199
|
+
if (O.call(r, i)) {
|
|
200
|
+
e[i] = t.copier(r[i], t);
|
|
1553
201
|
}
|
|
1554
202
|
}
|
|
1555
|
-
return
|
|
1556
|
-
|
|
1557
|
-
match: a,
|
|
1558
|
-
output: i
|
|
1559
|
-
};
|
|
1560
|
-
};
|
|
203
|
+
return e;
|
|
204
|
+
}
|
|
1561
205
|
|
|
1562
|
-
|
|
1563
|
-
const o = e instanceof RegExp ? e : ft.makeRe(e, n);
|
|
1564
|
-
return o.test(rt.basename(t));
|
|
1565
|
-
};
|
|
206
|
+
var W = w ? U : M;
|
|
1566
207
|
|
|
1567
|
-
|
|
208
|
+
function D(r, t) {
|
|
209
|
+
var e = u(t.prototype);
|
|
210
|
+
t.cache.set(r, e);
|
|
211
|
+
return m(r, e, t);
|
|
212
|
+
}
|
|
1568
213
|
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
...e,
|
|
1573
|
-
fastpaths: false
|
|
1574
|
-
});
|
|
1575
|
-
};
|
|
214
|
+
function F(r, t) {
|
|
215
|
+
return new t.Constructor(r.valueOf());
|
|
216
|
+
}
|
|
1576
217
|
|
|
1577
|
-
|
|
218
|
+
function V(r, t) {
|
|
219
|
+
var e = new t.Constructor(r.source, s(r));
|
|
220
|
+
e.lastIndex = r.lastIndex;
|
|
221
|
+
return e;
|
|
222
|
+
}
|
|
1578
223
|
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
}
|
|
1583
|
-
const o = e || {};
|
|
1584
|
-
const s = o.contains ? "" : "^";
|
|
1585
|
-
const r = o.contains ? "" : "$";
|
|
1586
|
-
let a = `${s}(?:${t.output})${r}`;
|
|
1587
|
-
if (t && t.negated === true) {
|
|
1588
|
-
a = `^(?!${a}).*$`;
|
|
1589
|
-
}
|
|
1590
|
-
const i = ft.toRegex(a, e);
|
|
1591
|
-
if (u === true) {
|
|
1592
|
-
i.state = t;
|
|
1593
|
-
}
|
|
1594
|
-
return i;
|
|
1595
|
-
};
|
|
224
|
+
function N(r, t) {
|
|
225
|
+
return r;
|
|
226
|
+
}
|
|
1596
227
|
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
if (e.fastpaths !== false && (t[0] === "." || t[0] === "*")) {
|
|
1606
|
-
o.output = it.fastpaths(t, e);
|
|
1607
|
-
}
|
|
1608
|
-
if (!o.output) {
|
|
1609
|
-
o = it(t, e);
|
|
1610
|
-
}
|
|
1611
|
-
return ft.compileRe(o, e, n, u);
|
|
1612
|
-
};
|
|
1613
|
-
|
|
1614
|
-
ft.toRegex = (t, e) => {
|
|
1615
|
-
try {
|
|
1616
|
-
const n = e || {};
|
|
1617
|
-
return new RegExp(t, n.flags || (n.nocase ? "i" : ""));
|
|
1618
|
-
} catch (t) {
|
|
1619
|
-
if (e && e.debug === true) throw t;
|
|
1620
|
-
return /$^/;
|
|
1621
|
-
}
|
|
1622
|
-
};
|
|
1623
|
-
|
|
1624
|
-
ft.constants = lt;
|
|
1625
|
-
|
|
1626
|
-
var At = ft;
|
|
1627
|
-
|
|
1628
|
-
var Rt = At;
|
|
1629
|
-
|
|
1630
|
-
const ht = o.default;
|
|
1631
|
-
|
|
1632
|
-
const _t = e.braces_1;
|
|
228
|
+
function T(r, t) {
|
|
229
|
+
var e = new t.Constructor;
|
|
230
|
+
t.cache.set(r, e);
|
|
231
|
+
r.forEach(function(r) {
|
|
232
|
+
e.add(t.copier(r, t));
|
|
233
|
+
});
|
|
234
|
+
return e;
|
|
235
|
+
}
|
|
1633
236
|
|
|
1634
|
-
|
|
237
|
+
function z(r, t) {
|
|
238
|
+
return m(r, T(r, t), t);
|
|
239
|
+
}
|
|
1635
240
|
|
|
1636
|
-
|
|
241
|
+
var R = Array.isArray;
|
|
1637
242
|
|
|
1638
|
-
|
|
243
|
+
var q = Object.assign;
|
|
1639
244
|
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
return e > -1 && t.indexOf("}", e) > -1;
|
|
245
|
+
var G = Object.getPrototypeOf || function(r) {
|
|
246
|
+
return r.__proto__;
|
|
1643
247
|
};
|
|
1644
248
|
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
}
|
|
1657
|
-
};
|
|
1658
|
-
for (let s = 0; s < e.length; s++) {
|
|
1659
|
-
let i = Et(String(e[s]), {
|
|
1660
|
-
...n,
|
|
1661
|
-
onResult: a
|
|
1662
|
-
}, true);
|
|
1663
|
-
let c = i.state.negated || i.state.negatedExtglob;
|
|
1664
|
-
if (c) r++;
|
|
1665
|
-
for (let e of t) {
|
|
1666
|
-
let t = i(e, true);
|
|
1667
|
-
let n = c ? !t.isMatch : t.isMatch;
|
|
1668
|
-
if (!n) continue;
|
|
1669
|
-
if (c) {
|
|
1670
|
-
u.add(t.output);
|
|
1671
|
-
} else {
|
|
1672
|
-
u.delete(t.output);
|
|
1673
|
-
o.add(t.output);
|
|
1674
|
-
}
|
|
1675
|
-
}
|
|
1676
|
-
}
|
|
1677
|
-
let i = r === e.length ? [ ...s ] : [ ...o ];
|
|
1678
|
-
let c = i.filter(t => !u.has(t));
|
|
1679
|
-
if (n && c.length === 0) {
|
|
1680
|
-
if (n.failglob === true) {
|
|
1681
|
-
throw new Error(`No matches found for "${e.join(", ")}"`);
|
|
1682
|
-
}
|
|
1683
|
-
if (n.nonull === true || n.nullglob === true) {
|
|
1684
|
-
return n.unescape ? e.map(t => t.replace(/\\/g, "")) : e;
|
|
1685
|
-
}
|
|
1686
|
-
}
|
|
1687
|
-
return c;
|
|
249
|
+
var H = {
|
|
250
|
+
array: B,
|
|
251
|
+
arrayBuffer: _,
|
|
252
|
+
blob: S,
|
|
253
|
+
dataView: k,
|
|
254
|
+
date: P,
|
|
255
|
+
error: N,
|
|
256
|
+
map: E,
|
|
257
|
+
object: W,
|
|
258
|
+
regExp: V,
|
|
259
|
+
set: T
|
|
1688
260
|
};
|
|
1689
261
|
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
262
|
+
var J = q({}, H, {
|
|
263
|
+
array: x,
|
|
264
|
+
map: I,
|
|
265
|
+
object: D,
|
|
266
|
+
set: z
|
|
267
|
+
});
|
|
1693
268
|
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
269
|
+
function K(r) {
|
|
270
|
+
return {
|
|
271
|
+
Arguments: r.object,
|
|
272
|
+
Array: r.array,
|
|
273
|
+
ArrayBuffer: r.arrayBuffer,
|
|
274
|
+
Blob: r.blob,
|
|
275
|
+
Boolean: F,
|
|
276
|
+
DataView: r.dataView,
|
|
277
|
+
Date: r.date,
|
|
278
|
+
Error: r.error,
|
|
279
|
+
Float32Array: r.arrayBuffer,
|
|
280
|
+
Float64Array: r.arrayBuffer,
|
|
281
|
+
Int8Array: r.arrayBuffer,
|
|
282
|
+
Int16Array: r.arrayBuffer,
|
|
283
|
+
Int32Array: r.arrayBuffer,
|
|
284
|
+
Map: r.map,
|
|
285
|
+
Number: F,
|
|
286
|
+
Object: r.object,
|
|
287
|
+
Promise: N,
|
|
288
|
+
RegExp: r.regExp,
|
|
289
|
+
Set: r.set,
|
|
290
|
+
String: F,
|
|
291
|
+
WeakMap: N,
|
|
292
|
+
WeakSet: N,
|
|
293
|
+
Uint8Array: r.arrayBuffer,
|
|
294
|
+
Uint8ClampedArray: r.arrayBuffer,
|
|
295
|
+
Uint16Array: r.arrayBuffer,
|
|
296
|
+
Uint32Array: r.arrayBuffer,
|
|
297
|
+
Uint64Array: r.arrayBuffer
|
|
1705
298
|
};
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
})
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
if (
|
|
1730
|
-
return
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
let u = St(Object.keys(t), e, n);
|
|
1744
|
-
let o = {};
|
|
1745
|
-
for (let e of u) o[e] = t[e];
|
|
1746
|
-
return o;
|
|
1747
|
-
};
|
|
1748
|
-
|
|
1749
|
-
St.some = (t, e, n) => {
|
|
1750
|
-
let u = [].concat(t);
|
|
1751
|
-
for (let t of [].concat(e)) {
|
|
1752
|
-
let e = Et(String(t), n);
|
|
1753
|
-
if (u.some(t => e(t))) {
|
|
1754
|
-
return true;
|
|
1755
|
-
}
|
|
1756
|
-
}
|
|
1757
|
-
return false;
|
|
1758
|
-
};
|
|
1759
|
-
|
|
1760
|
-
St.every = (t, e, n) => {
|
|
1761
|
-
let u = [].concat(t);
|
|
1762
|
-
for (let t of [].concat(e)) {
|
|
1763
|
-
let e = Et(String(t), n);
|
|
1764
|
-
if (!u.every(t => e(t))) {
|
|
1765
|
-
return false;
|
|
1766
|
-
}
|
|
1767
|
-
}
|
|
1768
|
-
return true;
|
|
1769
|
-
};
|
|
1770
|
-
|
|
1771
|
-
St.all = (t, e, n) => {
|
|
1772
|
-
if (typeof t !== "string") {
|
|
1773
|
-
throw new TypeError(`Expected a string: "${ht.inspect(t)}"`);
|
|
1774
|
-
}
|
|
1775
|
-
return [].concat(e).every(e => Et(e, n)(t));
|
|
1776
|
-
};
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
function L(r) {
|
|
302
|
+
var t = q({}, H, r);
|
|
303
|
+
var e = K(t);
|
|
304
|
+
var n = e.Array, o = e.Object;
|
|
305
|
+
function a(r, t) {
|
|
306
|
+
t.prototype = t.Constructor = undefined;
|
|
307
|
+
if (!r || typeof r !== "object") {
|
|
308
|
+
return r;
|
|
309
|
+
}
|
|
310
|
+
if (t.cache.has(r)) {
|
|
311
|
+
return t.cache.get(r);
|
|
312
|
+
}
|
|
313
|
+
t.prototype = G(r);
|
|
314
|
+
t.Constructor = t.prototype && t.prototype.constructor;
|
|
315
|
+
if (!t.Constructor || t.Constructor === Object) {
|
|
316
|
+
return o(r, t);
|
|
317
|
+
}
|
|
318
|
+
if (R(r)) {
|
|
319
|
+
return n(r, t);
|
|
320
|
+
}
|
|
321
|
+
var a = e[v(r)];
|
|
322
|
+
if (a) {
|
|
323
|
+
return a(r, t);
|
|
324
|
+
}
|
|
325
|
+
return typeof r.then === "function" ? r : o(r, t);
|
|
326
|
+
}
|
|
327
|
+
return function r(t) {
|
|
328
|
+
return a(t, {
|
|
329
|
+
Constructor: undefined,
|
|
330
|
+
cache: c(),
|
|
331
|
+
copier: a,
|
|
332
|
+
prototype: undefined
|
|
333
|
+
});
|
|
334
|
+
};
|
|
335
|
+
}
|
|
1777
336
|
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
...n,
|
|
1782
|
-
capture: true
|
|
1783
|
-
});
|
|
1784
|
-
let s = o.exec(u ? gt.toPosixSlashes(e) : e);
|
|
1785
|
-
if (s) {
|
|
1786
|
-
return s.slice(1).map(t => t === void 0 ? "" : t);
|
|
1787
|
-
}
|
|
1788
|
-
};
|
|
337
|
+
function Q(r) {
|
|
338
|
+
return L(q({}, J, r));
|
|
339
|
+
}
|
|
1789
340
|
|
|
1790
|
-
|
|
341
|
+
var X = Q({});
|
|
1791
342
|
|
|
1792
|
-
|
|
343
|
+
var Y = L({});
|
|
1793
344
|
|
|
1794
|
-
|
|
1795
|
-
let n = [];
|
|
1796
|
-
for (let u of [].concat(t || [])) {
|
|
1797
|
-
for (let t of _t(String(u), e)) {
|
|
1798
|
-
n.push(Et.parse(t, e));
|
|
1799
|
-
}
|
|
1800
|
-
}
|
|
1801
|
-
return n;
|
|
1802
|
-
};
|
|
345
|
+
exports.cjs.copyStrict = X;
|
|
1803
346
|
|
|
1804
|
-
|
|
1805
|
-
if (typeof t !== "string") throw new TypeError("Expected a string");
|
|
1806
|
-
if (e && e.nobrace === true || !yt(t)) {
|
|
1807
|
-
return [ t ];
|
|
1808
|
-
}
|
|
1809
|
-
return _t(t, e);
|
|
1810
|
-
};
|
|
1811
|
-
|
|
1812
|
-
St.braceExpand = (t, e) => {
|
|
1813
|
-
if (typeof t !== "string") throw new TypeError("Expected a string");
|
|
1814
|
-
return St.braces(t, {
|
|
1815
|
-
...e,
|
|
1816
|
-
expand: true
|
|
1817
|
-
});
|
|
1818
|
-
};
|
|
347
|
+
exports.cjs.createCopier = L;
|
|
1819
348
|
|
|
1820
|
-
|
|
349
|
+
exports.cjs.createStrictCopier = Q;
|
|
1821
350
|
|
|
1822
|
-
exports.
|
|
351
|
+
exports.cjs.default = Y;
|