{"_id":"sort-desc","_rev":"86876","name":"sort-desc","description":"Sort array elements in descending order.","dist-tags":{"latest":"0.2.0"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"time":{"modified":"2021-06-03T10:28:12.000Z","created":"2014-08-15T06:15:44.050Z","0.2.0":"2015-07-18T00:44:14.138Z","0.1.1":"2014-08-21T10:37:16.234Z","0.1.0":"2014-08-15T06:15:44.050Z"},"users":{},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/sort-desc.git"},"versions":{"0.2.0":{"name":"sort-desc","description":"Sort array elements in descending order.","version":"0.2.0","homepage":"https://github.com/jonschlinkert/sort-desc","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/sort-desc.git"},"bugs":{"url":"https://github.com/jonschlinkert/sort-desc/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"keywords":["array","desc","descend","descending","element","elements","order","ordered","sort","sorted","sorting"],"verb":{"related":{"list":["sort-asc","sort-desc","sort-object"]}},"gitHead":"06167d04cbdcf3d429389a771132848426136729","_id":"sort-desc@0.2.0","_shasum":"280c1bdafc6577887cedbad1ed2e41c037976646","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"280c1bdafc6577887cedbad1ed2e41c037976646","size":1814,"noattachment":false,"key":"/sort-desc/-/sort-desc-0.2.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/sort-desc/download/sort-desc-0.2.0.tgz"},"directories":{},"publish_time":1437180254138,"_cnpm_publish_time":1437180254138,"_hasShrinkwrap":false},"0.1.1":{"name":"sort-desc","description":"Sort array elements in descending order.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/sort-desc","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/sort-desc.git"},"bugs":{"url":"https://github.com/jonschlinkert/sort-desc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/sort-desc/blob/master/LICENSE-MIT"}],"keywords":["array","arr","desc","descending","function","keys","key","order","ordered","obj","object","sort"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","verb":"^0.2.15"},"_id":"sort-desc@0.1.1","_shasum":"198b8c0cdeb095c463341861e3925d4ee359a9ee","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"198b8c0cdeb095c463341861e3925d4ee359a9ee","size":2486,"noattachment":false,"key":"/sort-desc/-/sort-desc-0.1.1.tgz","tarball":"http://registry.cnpm.dingdandao.com/sort-desc/download/sort-desc-0.1.1.tgz"},"directories":{},"publish_time":1408617436234,"_cnpm_publish_time":1408617436234,"_hasShrinkwrap":false},"0.1.0":{"name":"sort-desc","description":"Sort array elements in descending order.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/sort-desc","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/sort-desc.git"},"bugs":{"url":"https://github.com/jonschlinkert/sort-desc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/sort-desc/blob/master/LICENSE-MIT"}],"keywords":["array","arr","desc","descending","function","keys","key","order","ordered","obj","object","sort"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","verb":"^0.2.15"},"_id":"sort-desc@0.1.0","_shasum":"1e9fb5ce1764cdf5f42032bceeaaab0a2975a63f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"1e9fb5ce1764cdf5f42032bceeaaab0a2975a63f","size":2487,"noattachment":false,"key":"/sort-desc/-/sort-desc-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/sort-desc/download/sort-desc-0.1.0.tgz"},"directories":{},"publish_time":1408083344050,"_cnpm_publish_time":1408083344050,"_hasShrinkwrap":false}},"readme":"# sort-desc [![NPM version](https://badge.fury.io/js/sort-desc.svg)](http://badge.fury.io/js/sort-desc)  [![Build Status](https://travis-ci.org/jonschlinkert/sort-desc.svg)](https://travis-ci.org/jonschlinkert/sort-desc)\n\n> Sort array elements in descending order.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/)\n\n```sh\n$ npm i sort-desc --save\n```\n\n## Usage\n\n```js\nvar descending = require('sort-desc');\n['a', 'b', 'c', 'd'].sort(descending);\n//=> ['d', 'c', 'b', 'a']\n```\n\n## Related projects\n\n* [sort-asc](https://github.com/jonschlinkert/sort-asc): Sort array elements in ascending order.\n* [sort-object](https://github.com/doowb/sort-object): Sort the keys in an object.\n\n## Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm i -d && npm test\n```\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/sort-desc/issues/new)\n\n## Author\n\n**Jon Schlinkert**\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright © 2015 Jon Schlinkert\nReleased under the MIT license.\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on July 17, 2015._","_attachments":{},"homepage":"https://github.com/jonschlinkert/sort-desc","bugs":{"url":"https://github.com/jonschlinkert/sort-desc/issues"},"license":"MIT"}