{"id":21559786,"url":"https://github.com/comparison-sorting/merge-sort","last_synced_at":"2025-12-12T03:32:36.883Z","repository":{"id":34068801,"uuid":"37856611","full_name":"comparison-sorting/merge-sort","owner":"comparison-sorting","description":":dragon: Mergesort algorithm for JavaScript","archived":false,"fork":false,"pushed_at":"2024-10-10T13:34:33.000Z","size":707,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-11T11:23:50.761Z","etag":null,"topics":["agpl","algorithms","javascript","mergesort","sorting-algorithms","stable-sort","stable-sorting","worst-case"],"latest_commit_sha":null,"homepage":"https://aureooms.github.io/js-mergesort","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/comparison-sorting.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":"2015-06-22T13:27:22.000Z","updated_at":"2021-05-25T18:45:42.000Z","dependencies_parsed_at":"2023-12-15T23:56:24.923Z","dependency_job_id":"33c2590b-6814-454e-a2e4-f5d5d2d0d4ba","html_url":"https://github.com/comparison-sorting/merge-sort","commit_stats":{"total_commits":240,"total_committers":4,"mean_commits":60.0,"dds":0.2875,"last_synced_commit":"9e366b7b73d4a8a567b7f8d9e4e13c0f2341ee0e"},"previous_names":["aureooms/js-mergesort"],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparison-sorting%2Fmerge-sort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparison-sorting%2Fmerge-sort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparison-sorting%2Fmerge-sort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparison-sorting%2Fmerge-sort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/comparison-sorting","download_url":"https://codeload.github.com/comparison-sorting/merge-sort/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248210839,"owners_count":21065621,"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":["agpl","algorithms","javascript","mergesort","sorting-algorithms","stable-sort","stable-sorting","worst-case"],"created_at":"2024-11-24T09:09:25.611Z","updated_at":"2025-09-23T22:58:27.493Z","avatar_url":"https://github.com/comparison-sorting.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":":dragon: [@aureooms/js-mergesort](https://make-github-pseudonymous-again.github.io/js-mergesort)\n==\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://idea-instructions.com/merge-sort\"\u003e\n\u003cimg src=\"https://idea-instructions.com/merge-sort.png\" width=\"600\"/\u003e\n\u003c/a\u003e\u003cbr/\u003e\n\u003ci\u003eIDEA Instructions\u003c/i\u003e\ndeveloped by\n\u003ca href=\"https://www.ibr.cs.tu-bs.de/users/fekete\"\u003eSándor P. Fekete\u003c/a\u003e\nand\n\u003ca href=\"https://morr.cc\"\u003eSebastian Morr\u003c/a\u003e.\n\u003c/p\u003e\n\nMergesort library for JavaScript.\nSee [docs](https://make-github-pseudonymous-again.github.io/js-mergesort/index.html).\nParent is [aureooms/js-sort](https://github.com/make-github-pseudonymous-again/js-sort).\n\n```js\nimport * as array from '@aureooms/js-array' ;\nimport * as merging from '@aureooms/js-merging' ;\nimport * as mergesort from '@aureooms/js-mergesort' ;\n\nconst sort = mergesort.recursive( merging.tapemerge , array.copy ) ;\n\nlet data = [ /*...*/ ] ;\nlet a = data.slice();\nlet b = new Array(data.length) ;\n\nimport { increasing } from '@aureooms/js-compare' ;\nsort(increasing, a, 0, a.length, b, 0, b.length) ;\n\nimport { issorted } from '@aureooms/js-sort' ;\nissorted(increasing, b, 0, b.length) ; // true\n```\n\n[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-mergesort.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-mergesort/main/LICENSE)\n[![Version](https://img.shields.io/npm/v/@aureooms/js-mergesort.svg)](https://www.npmjs.org/package/@aureooms/js-mergesort)\n[![Build](https://img.shields.io/travis/make-github-pseudonymous-again/js-mergesort/main.svg)](https://travis-ci.org/make-github-pseudonymous-again/js-mergesort/branches)\n[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-mergesort.svg)](https://david-dm.org/make-github-pseudonymous-again/js-mergesort)\n[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-mergesort.svg)](https://david-dm.org/make-github-pseudonymous-again/js-mergesort?type=dev)\n[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-mergesort.svg)](https://github.com/make-github-pseudonymous-again/js-mergesort/issues)\n[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-mergesort.svg)](https://www.npmjs.org/package/@aureooms/js-mergesort)\n\n[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/issues)\n[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/trends/churn)\n[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-mergesort/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-mergesort)\n[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/trends/technical_debt)\n[![Documentation](https://make-github-pseudonymous-again.github.io/js-mergesort//badge.svg)](https://make-github-pseudonymous-again.github.io/js-mergesort//source.html)\n[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-mergesort)](https://bundlephobia.com/result?p=@aureooms/js-mergesort)\n\n## :link: Links\n\n  - http://sorting.at\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomparison-sorting%2Fmerge-sort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomparison-sorting%2Fmerge-sort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomparison-sorting%2Fmerge-sort/lists"}