From 238dd6feef0989e66a2e32d06b1fa8fe2628da96 Mon Sep 17 00:00:00 2001 From: Marco Massarotto Date: Mon, 24 Oct 2016 10:58:23 +0100 Subject: [PATCH] feat: autofix header case --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 49c94ef1..41c44c85 100644 --- a/index.js +++ b/index.js @@ -79,7 +79,7 @@ module.exports = { width: MAX_LINE_WIDTH }; - const head = (answers.type + ': ' + answers.subject.trim()); + const head = (answers.type + ': ' + answers.subject.trim()).toLowerCase(); // Wrap these lines at MAX_LINE_WIDTH characters const body = wrap(answers.body, wrapOptions);