Skip to content

Commit

Permalink
Exposed some utility functions and added more test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
julianjensen committed Dec 16, 2017
1 parent c36d44c commit 2b42f66
Show file tree
Hide file tree
Showing 3 changed files with 349 additions and 88 deletions.
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"use strict";

const { frontiers_from_preds, frontiers_from_succs, reverse_flow } = require( './src/frontiers' ),
{ preds_to_succs, succs_to_preds } = require( './src/utils' );
{ preds_to_succs, succs_to_preds, normalize } = require( './src/utils' );

module.exports = {
lt: require( './src/lt' ),
Expand All @@ -16,5 +16,6 @@ module.exports = {
frontiers_from_succs,
reverse_flow,
succs_to_preds,
preds_to_succs
preds_to_succs,
normalize
};
Loading

0 comments on commit 2b42f66

Please sign in to comment.