{"id":16330026,"url":"https://github.com/luin/aqsort","last_synced_at":"2025-05-15T09:14:34.603Z","repository":{"id":23552307,"uuid":"26919577","full_name":"luin/aqsort","owner":"luin","description":"An implementation of asynchronous quicksort in JavaScript","archived":false,"fork":false,"pushed_at":"2014-12-02T09:10:51.000Z","size":136,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-17T10:15:36.950Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/luin.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}},"created_at":"2014-11-20T15:53:15.000Z","updated_at":"2014-12-02T09:10:51.000Z","dependencies_parsed_at":"2022-08-22T01:50:20.933Z","dependency_job_id":null,"html_url":"https://github.com/luin/aqsort","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luin%2Faqsort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luin%2Faqsort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luin%2Faqsort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luin%2Faqsort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luin","download_url":"https://codeload.github.com/luin/aqsort/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254310517,"owners_count":22049470,"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":"2024-10-10T23:18:13.655Z","updated_at":"2025-05-15T09:14:34.566Z","avatar_url":"https://github.com/luin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AsyncQsort\nAn implementation of asynchronous quicksort in JavaScript\n\n[![Build Status](https://travis-ci.org/luin/aqsort.png?branch=master)](https://travis-ci.org/luin/aqsort)\n\n## Install\n\n    $ npm install aqsort\n\n## Usage\n\n```javascript\nvar aqsort = require('aqsort');\n\naqsort([1, 9, 3, 7], function(a, b, callback) {\n  if (a \u003e b) { callback(null, 1); }\n  else if (a === b) { callback(null, 0); }\n  else { callback(null, -1); }\n}, function(err, res) {\n  // res === [1, 3, 7, 9]\n});\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluin%2Faqsort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluin%2Faqsort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluin%2Faqsort/lists"}