planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

33
node_modules/sort-asc/README.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# sort-asc [![NPM version](https://badge.fury.io/js/sort-asc.png)](http://badge.fury.io/js/sort-asc)
> Sort array elements in ascending order.
## Install
#### Install with [npm](npmjs.org)
```bash
npm i sort-asc --save
```
## Usage
```js
var sortAsc = require('sort-asc');
console.log((['a', 'b', 'c', 'd']).sort(sortAsc));
//=> ['d', 'c', 'b', 'a']
```
## Author
**Jon Schlinkert**
+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
## License
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
***
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on August 15, 2014._