{"id":16682633,"url":"https://github.com/jchip/glob-diff","last_synced_at":"2026-04-20T16:33:20.836Z","repository":{"id":245722853,"uuid":"819056035","full_name":"jchip/glob-diff","owner":"jchip","description":"test behavior differences between glob versions","archived":false,"fork":false,"pushed_at":"2024-06-23T17:04:31.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-01T15:15:04.153Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jchip.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-23T16:47:07.000Z","updated_at":"2024-06-23T17:04:34.000Z","dependencies_parsed_at":"2024-06-23T17:57:08.614Z","dependency_job_id":"4f0ecb36-af90-45e5-bb08-70b5ae5429f7","html_url":"https://github.com/jchip/glob-diff","commit_stats":null,"previous_names":["jchip/glob-diff"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jchip/glob-diff","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jchip%2Fglob-diff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jchip%2Fglob-diff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jchip%2Fglob-diff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jchip%2Fglob-diff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jchip","download_url":"https://codeload.github.com/jchip/glob-diff/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jchip%2Fglob-diff/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32055363,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T14:08:07.575Z","updated_at":"2026-04-20T16:33:20.819Z","avatar_url":"https://github.com/jchip.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"test behavior differences for dirs and trailing / between versions 7, 9, and 10 of https://www.npmjs.com/package/glob\n\n```\nexisting dir with trailing /\n  glob_7.sync(\"t1/t2/t3/\", undefined) =\u003e [ 't1/t2/t3/' ]\n  glob_9.sync(\"t1/t2/t3/\", undefined) =\u003e [ 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t3/\", undefined) =\u003e [ 't1/t2/t3' ]\n\nmultiple existing dir with trailing /\n  glob_7.sync(\"t1/t2/t?/\", undefined) =\u003e [ 't1/t2/t3/', 't1/t2/t4/', 't1/t2/t5/', 't1/t2/t6/' ]\n  glob_9.sync(\"t1/t2/t?/\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t?/\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3' ]\n\nexisting dir without trailing /\n  glob_7.sync(\"t1/t2/t3\", undefined) =\u003e [ 't1/t2/t3' ]\n  glob_9.sync(\"t1/t2/t3\", undefined) =\u003e [ 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t3\", undefined) =\u003e [ 't1/t2/t3' ]\n\nmultiple existing dir without trailing /\n  glob_7.sync(\"t1/t2/t?\", undefined) =\u003e [ 't1/t2/t3', 't1/t2/t4', 't1/t2/t5', 't1/t2/t6' ]\n  glob_9.sync(\"t1/t2/t?\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t?\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3' ]\n\nsymlink dir with trailing /\n  glob_7.sync(\"t1/t2/t3sym/\", undefined) =\u003e [ 't1/t2/t3sym/' ]\n  glob_9.sync(\"t1/t2/t3sym/\", undefined) =\u003e [ 't1/t2/t3sym' ]\n  glob10.sync(\"t1/t2/t3sym/\", undefined) =\u003e [ 't1/t2/t3sym' ]\n\nmix symlink dir with trailing /\n  glob_7.sync(\"t1/t2/t*/\", undefined) =\u003e [ 't1/t2/t3/', 't1/t2/t3sym/', 't1/t2/t4/', 't1/t2/t5/', 't1/t2/t6/' ]\n  glob_9.sync(\"t1/t2/t*/\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3sym', 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t*/\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3sym', 't1/t2/t3' ]\n\nmix symlink dir without trailing /\n  glob_7.sync(\"t1/t2/t*\", undefined) =\u003e [ 't1/t2/t3', 't1/t2/t3sym', 't1/t2/t4', 't1/t2/t5', 't1/t2/t6' ]\n  glob_9.sync(\"t1/t2/t*\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3sym', 't1/t2/t3' ]\n  glob10.sync(\"t1/t2/t*\", undefined) =\u003e [ 't1/t2/t6', 't1/t2/t5', 't1/t2/t4', 't1/t2/t3sym', 't1/t2/t3' ]\n\nsymlink dir without trailing /\n  glob_7.sync(\"t1/t2/t3sym\", undefined) =\u003e [ 't1/t2/t3sym' ]\n  glob_9.sync(\"t1/t2/t3sym\", undefined) =\u003e [ 't1/t2/t3sym' ]\n  glob10.sync(\"t1/t2/t3sym\", undefined) =\u003e [ 't1/t2/t3sym' ]\n\nnone existing dir with trailing /\n  glob_7.sync(\"x1/x2/x3/\", undefined) =\u003e []\n  glob_9.sync(\"x1/x2/x3/\", undefined) =\u003e []\n  glob10.sync(\"x1/x2/x3/\", undefined) =\u003e []\n\nmultiple existing dir with trailing / and mark:true\n  glob_7.sync(\"t1/t2/t?/\", {\"mark\":true}) =\u003e [ 't1/t2/t3/', 't1/t2/t4/', 't1/t2/t5/', 't1/t2/t6/' ]\n  glob_9.sync(\"t1/t2/t?/\", {\"mark\":true}) =\u003e [ 't1/t2/t6/', 't1/t2/t5/', 't1/t2/t4/', 't1/t2/t3/' ]\n  glob10.sync(\"t1/t2/t?/\", {\"mark\":true}) =\u003e [ 't1/t2/t6/', 't1/t2/t5/', 't1/t2/t4/', 't1/t2/t3/' ]\n\nmix symlink dir with trailing / and mark:true\n  glob_7.sync(\"t1/t2/t*/\", {\"mark\":true}) =\u003e [ 't1/t2/t3/', 't1/t2/t3sym/', 't1/t2/t4/', 't1/t2/t5/', 't1/t2/t6/' ]\n  glob_9.sync(\"t1/t2/t*/\", {\"mark\":true}) =\u003e [ 't1/t2/t6/', 't1/t2/t5/', 't1/t2/t4/', 't1/t2/t3sym', 't1/t2/t3/' ]\n  glob10.sync(\"t1/t2/t*/\", {\"mark\":true}) =\u003e [ 't1/t2/t6/', 't1/t2/t5/', 't1/t2/t4/', 't1/t2/t3sym', 't1/t2/t3/' ]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjchip%2Fglob-diff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjchip%2Fglob-diff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjchip%2Fglob-diff/lists"}