From b97dd7e6bb4127b7493f6be7d7cc33f66071b1e3 Mon Sep 17 00:00:00 2001 From: Chris Pettitt Date: Mon, 8 Sep 2014 19:37:07 -0700 Subject: [PATCH] Remove lib/util --- lib/index.js | 1 - lib/util.js | 1 - 2 files changed, 2 deletions(-) delete mode 100644 lib/util.js diff --git a/lib/index.js b/lib/index.js index f7689b71..756e0ab6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,6 +1,5 @@ // Includes only the "core" of graphlib module.exports = { Graph: require("./graph"), - util: require("./util"), version: require("./version") }; diff --git a/lib/util.js b/lib/util.js deleted file mode 100644 index 2feae1f3..00000000 --- a/lib/util.js +++ /dev/null @@ -1 +0,0 @@ -exports.LABEL_WEIGHT_FUNC = function(edge) { return edge.label; };