{"id":26864297,"url":"https://github.com/data-structures-and-algorithms/skip-list","last_synced_at":"2025-05-06T22:41:08.651Z","repository":{"id":53592126,"uuid":"294684202","full_name":"data-structures-and-algorithms/skip-list","owner":"data-structures-and-algorithms","description":":fast_forward: Skip list data structure for JavaScript","archived":false,"fork":false,"pushed_at":"2025-04-12T02:09:02.000Z","size":2656,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-26T14:51:14.225Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://data-structures-and-algorithms.github.io/skip-list","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/data-structures-and-algorithms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-09-11T12:03:28.000Z","updated_at":"2025-04-12T02:09:05.000Z","dependencies_parsed_at":"2023-07-16T15:31:47.351Z","dependency_job_id":"49a5f9ec-4e1e-4010-8ac8-1886765e6cff","html_url":"https://github.com/data-structures-and-algorithms/skip-list","commit_stats":{"total_commits":126,"total_committers":6,"mean_commits":21.0,"dds":0.5793650793650793,"last_synced_commit":"94d813df989cf1fb78d948cf6c87f41774229b3f"},"previous_names":["aureooms/js-skip-list"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-structures-and-algorithms%2Fskip-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-structures-and-algorithms%2Fskip-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-structures-and-algorithms%2Fskip-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-structures-and-algorithms%2Fskip-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/data-structures-and-algorithms","download_url":"https://codeload.github.com/data-structures-and-algorithms/skip-list/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252782435,"owners_count":21803378,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-03-31T03:38:25.998Z","updated_at":"2025-05-06T22:41:08.631Z","avatar_url":"https://github.com/data-structures-and-algorithms.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":":fast_forward: [@data-structure/skip-list](https://data-structures-and-algorithms.github.io/skip-list)\n==\n\nSkip list data structure for JavaScript.\nSee [docs](https://data-structures-and-algorithms.github.io/skip-list/index.html).\n\n\u003e :warning: Depending on your environment, the code may require\n\u003e `regeneratorRuntime` to be defined, for instance by importing\n\u003e [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).\n\n```js\nimport {decreasing} from '@total-order/primitive';\nimport {range} from '@iterable-iterator/range';\nimport {SkipList} from '@data-structure/skip-list';\nconst list = SkipList.from(decreasing, range(10000));\n[...list]; // [9999, 9998, ...]\nlist.add(...)\nlist.get(...)\nlist.has(...)\nlist.remove(...)\n```\n\n[![License](https://img.shields.io/github/license/data-structures-and-algorithms/skip-list.svg)](https://raw.githubusercontent.com/data-structures-and-algorithms/skip-list/main/LICENSE)\n[![Version](https://img.shields.io/npm/v/@data-structure/skip-list.svg)](https://www.npmjs.org/package/@data-structure/skip-list)\n[![Tests](https://img.shields.io/github/actions/workflow/status/data-structures-and-algorithms/skip-list/ci.yml?branch=main\u0026event=push\u0026label=tests)](https://github.com/data-structures-and-algorithms/skip-list/actions/workflows/ci.yml?query=branch:main)\n[![Dependencies](https://img.shields.io/librariesio/github/data-structures-and-algorithms/skip-list.svg)](https://github.com/data-structures-and-algorithms/skip-list/network/dependencies)\n[![GitHub issues](https://img.shields.io/github/issues/data-structures-and-algorithms/skip-list.svg)](https://github.com/data-structures-and-algorithms/skip-list/issues)\n[![Downloads](https://img.shields.io/npm/dm/@data-structure/skip-list.svg)](https://www.npmjs.org/package/@data-structure/skip-list)\n\n[![Code issues](https://img.shields.io/codeclimate/issues/data-structures-and-algorithms/skip-list.svg)](https://codeclimate.com/github/data-structures-and-algorithms/skip-list/issues)\n[![Code maintainability](https://img.shields.io/codeclimate/maintainability/data-structures-and-algorithms/skip-list.svg)](https://codeclimate.com/github/data-structures-and-algorithms/skip-list/trends/churn)\n[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/data-structures-and-algorithms/skip-list/main.svg)](https://codecov.io/gh/data-structures-and-algorithms/skip-list)\n[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/data-structures-and-algorithms/skip-list.svg)](https://codeclimate.com/github/data-structures-and-algorithms/skip-list/trends/technical_debt)\n[![Documentation](https://data-structures-and-algorithms.github.io/skip-list/badge.svg)](https://data-structures-and-algorithms.github.io/skip-list/source.html)\n[![Package size](https://img.shields.io/bundlephobia/minzip/@data-structure/skip-list)](https://bundlephobia.com/result?p=@data-structure/skip-list)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdata-structures-and-algorithms%2Fskip-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdata-structures-and-algorithms%2Fskip-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdata-structures-and-algorithms%2Fskip-list/lists"}