summaryrefslogtreecommitdiffstats
path: root/lib/parse/langs.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse/langs.js')
-rw-r--r--lib/parse/langs.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/parse/langs.js b/lib/parse/langs.js
deleted file mode 100644
index 01b7c8c..0000000
--- a/lib/parse/langs.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var _ = require("lodash");
-var parseEntries = require("./summary").entries;
-
-
-var parseLangs = function(content) {
- var entries = parseEntries(content);
-
- return {
- list: _.chain(entries)
- .filter(function(entry) {
- return Boolean(entry.path);
- })
- .map(function(entry) {
- return {
- title: entry.title,
- path: entry.path,
- lang: entry.path.replace("/", "")
- };
- })
- .value()
- };
-};
-
-
-module.exports = parseLangs; \ No newline at end of file