Skip to content

Commit

Permalink
Migrate intersect.js
Browse files Browse the repository at this point in the history
  • Loading branch information
curran committed Dec 30, 2020
1 parent 3bce5e3 commit e576b5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ export { graph_connect } from './graph_connect';
export { graph_empty_nodes, graph_empty } from './graph_empty';
export { graph_random_erdos_renyi, graph_random } from './graph_random';
export { hcluster } from './hcluster';
export { intersect_sorted_ints } from './intersect';
2 changes: 1 addition & 1 deletion src/intersect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function intersect_sorted_ints(array1, array2)
export function intersect_sorted_ints(array1, array2)
{
var ai = 0, bi= 0;
var result = [];
Expand Down

0 comments on commit e576b5e

Please sign in to comment.