Package Exports
- insertion-sort-ascending
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (insertion-sort-ascending) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
insertion-sort-ascending
Sorts an array by ascending values via insertion sort, pass by value
example:
const insertionSortAsc = require('insertion-sort-ascending');
insertionSortAsc([5, 2, 4, 6, 1, 3])
//returns [1, 2, 3, 4, 5, 6]