From 55a5d0a69fa2489c40098fbae50bd20eb5ab9ec1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Gerardy Date: Thu, 11 Aug 2016 21:21:17 +0200 Subject: [PATCH] Remove an unused variable --- test-utils/domMock.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-utils/domMock.js b/test-utils/domMock.js index d6821aec..f32d49b6 100644 --- a/test-utils/domMock.js +++ b/test-utils/domMock.js @@ -79,14 +79,14 @@ module.exports = function() { /** * This will split a semicolon-separated CSS declaration list into an array of * individual declarations, ignoring semicolons in strings. - * + * * Comments are also stripped. * * @param {string} declList * @return {string[]} */ function splitDeclList(declList) { - var indices = [], res = [], inParen = 0, match + var indices = [], res = [], match // remove comments, preserving comments in strings. declList = declList.replace(