From 06353a69772fd4cebf7f17887e8ae58ef58c17d6 Mon Sep 17 00:00:00 2001 From: Dolan Date: Thu, 9 Mar 2017 22:57:37 +0000 Subject: [PATCH] linting --- ts/docx/xml-components/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/docx/xml-components/index.ts b/ts/docx/xml-components/index.ts index f861029076..ad02890532 100644 --- a/ts/docx/xml-components/index.ts +++ b/ts/docx/xml-components/index.ts @@ -16,11 +16,11 @@ export abstract class XmlComponent extends BaseXmlComponent { if (comp instanceof BaseXmlComponent) { return comp.toXml(); } - return comp + return comp; }).filter((comp) => comp); // Exclude null, undefined, and empty strings return { [this.rootKey]: ret, - } + }; } }