Package Exports
- binary-merge
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 (binary-merge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
binary-merge
Merges a pair of sorted arrays.
Use
First install via npm:
npm install binary-merge
Then you can use the algorithm as follows:
var merge = require("binary-merge")
console.log(merge([1,3,7], [2,4,6]))
// Prints:
//
// 1,2,3,4,6,7
//
Credits
(c) 2013 Mikola Lysenko. MIT License