Update test.js

pull/1785/head
n8225 2019-08-21 17:30:28 -05:00 committed by GitHub
parent 380554d768
commit e59fb69742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@ function entryErrorCheck(md) {
let totalPass = 0; let totalPass = 0;
let total = 0; let total = 0;
const entryArray = []; const entryArray = [];
if (entries[0] === "") {
console.log("0 Entries")
process.exit(0)
}
for (let i = 0, len = entries.length; i < len; i += 1) { // Loop to create array of objects for (let i = 0, len = entries.length; i < len; i += 1) { // Loop to create array of objects
entryArray[i] = new Object; entryArray[i] = new Object;
entryArray[i].raw = entries[i]; entryArray[i].raw = entries[i];