From 53ab65f53eb3295f7aa0a3dbd082a738b4b61012 Mon Sep 17 00:00:00 2001 From: Glen Date: Mon, 25 Jan 2016 21:42:09 +0200 Subject: [PATCH] Remove space before comma --- micromatch/micromatch-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micromatch/micromatch-tests.ts b/micromatch/micromatch-tests.ts index c0d47a80d..f90c4a4bd 100644 --- a/micromatch/micromatch-tests.ts +++ b/micromatch/micromatch-tests.ts @@ -36,7 +36,7 @@ anyMatchFuncResult = mm.filter((filePath: string) => true); anyMatchFuncResult = mm.filter('*.md', {dot: true}); ['a.js', 'b.txt', 'c.md'].filter(anyMatchFuncResult); -var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 , 11, 12, 13, 14, 15]; +var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; anyMatchFuncResult = mm.filter(['{1..10}', '![7-9]', '!{3..4}']); arr.filter(anyMatchFuncResult);