Fix build-index.js coding style (#1101)

- Use single quotes consistently
- Insert space before parenthesis in anonymous function declarations
waldyrious/alt-syntax
Zlatan Vasović 2016-10-02 06:49:50 +02:00 committed by Agniva De Sarker
parent 7555812d12
commit 27123e215a
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
'use strict';
var glob = require("glob");
var glob = require('glob');
function parsePlatform(pagefile) {
return pagefile.split(/\//)[1];
@ -11,7 +11,7 @@ function parsePagename(pagefile) {
}
function buildShortPagesIndex(files) {
var reducer = function(index, file) {
var reducer = function (index, file) {
var os = parsePlatform(file);
var page = parsePagename(file);
if (index[page]) {
@ -28,7 +28,7 @@ function buildShortPagesIndex(files) {
function buildPagesIndex(shortIndex) {
return Object.keys(shortIndex)
.sort()
.map(function(page) {
.map(function (page) {
return {
name: page,
platform: shortIndex[page]
@ -43,7 +43,7 @@ function saveIndex(index) {
console.log(JSON.stringify(indexFile));
}
glob("pages/**/*.md", function (er, files) {
glob('pages/**/*.md', function (er, files) {
var shortIndex = buildShortPagesIndex(files);
var index = buildPagesIndex(shortIndex);
saveIndex(index);