Files
coopgo/node_modules/sort-asc/README.md
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

709 B

sort-asc NPM version

Sort array elements in ascending order.

Install

Install with npm

npm i sort-asc --save

Usage

var sortAsc = require('sort-asc');
console.log((['a', 'b', 'c', 'd']).sort(sortAsc));
//=> ['d', 'c', 'b', 'a']

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on August 15, 2014.